|
1 | 1 | <Project Sdk="MSBuild.Sdk.Extras/3.0.22">
|
2 |
| - <PropertyGroup> |
3 |
| - <TargetFrameworks>netstandard2.1;xamarinios10;monoandroid10.0;</TargetFrameworks> |
4 |
| - <RootNamespace>Notifo.SDK</RootNamespace> |
5 |
| - <LangVersion>8.0</LangVersion> |
6 |
| - <Nullable>enable</Nullable> |
7 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
8 |
| - <Authors>sebastianstehle</Authors> |
9 |
| - <Company>Squidex UG (haftungsbeschränkt)</Company> |
10 |
| - <Copyright>MIT</Copyright> |
11 |
| - <Description>Notifo SDK for Xamarin</Description> |
12 |
| - <PackageId>Notifo.Xamarin.Core</PackageId> |
13 |
| - <PackageIcon>logo-squared.png</PackageIcon> |
14 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
15 |
| - <PackageProjectUrl>https://notifo.io</PackageProjectUrl> |
16 |
| - <PackageTags>notifo xamarin</PackageTags> |
17 |
| - <Version>0.0.1-alpha1</Version> |
18 |
| - </PropertyGroup> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFrameworks>netstandard2.1;xamarinios10;monoandroid10.0;</TargetFrameworks> |
| 4 | + <RootNamespace>Notifo.SDK</RootNamespace> |
| 5 | + <LangVersion>8.0</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 8 | + </PropertyGroup> |
19 | 9 |
|
20 |
| - <ItemGroup> |
21 |
| - <None Include="logo-squared.png" Pack="true" PackagePath="\" /> |
22 |
| - </ItemGroup> |
23 |
| - |
24 |
| - <PropertyGroup> |
25 |
| - <CodeAnalysisRuleSet>..\..\Notifo.ruleset</CodeAnalysisRuleSet> |
26 |
| - <AssemblyName>Notifo.Xamarin.Core</AssemblyName> |
27 |
| - </PropertyGroup> |
| 10 | + <ItemGroup> |
| 11 | + <None Include="logo-squared.png" Pack="true" PackagePath="\" /> |
| 12 | + </ItemGroup> |
28 | 13 |
|
29 |
| - <ItemGroup> |
30 |
| - <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" /> |
31 |
| - </ItemGroup> |
| 14 | + <PropertyGroup> |
| 15 | + <CodeAnalysisRuleSet>..\..\Notifo.ruleset</CodeAnalysisRuleSet> |
| 16 | + <AssemblyName>Notifo.Xamarin.Core</AssemblyName> |
| 17 | + </PropertyGroup> |
32 | 18 |
|
33 |
| - <ItemGroup> |
34 |
| - <Compile Remove="**\*.netstandard.cs" /> |
35 |
| - <Compile Remove="**\*.android.cs" /> |
36 |
| - <Compile Remove="**\*.ios.cs" /> |
37 |
| - </ItemGroup> |
| 19 | + <ItemGroup> |
| 20 | + <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" /> |
| 21 | + </ItemGroup> |
38 | 22 |
|
39 |
| - <ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) "> |
40 |
| - <Compile Include="**\*.netstandard.cs" /> |
41 |
| - </ItemGroup> |
| 23 | + <ItemGroup> |
| 24 | + <Compile Remove="**\*.netstandard.cs" /> |
| 25 | + <Compile Remove="**\*.android.cs" /> |
| 26 | + <Compile Remove="**\*.ios.cs" /> |
| 27 | + </ItemGroup> |
42 | 28 |
|
43 |
| - <ItemGroup Condition=" $(TargetFramework.StartsWith('xamarinios')) "> |
44 |
| - <Compile Include="**\*.ios.cs" /> |
45 |
| - </ItemGroup> |
| 29 | + <ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) "> |
| 30 | + <Compile Include="**\*.netstandard.cs" /> |
| 31 | + </ItemGroup> |
46 | 32 |
|
47 |
| - <ItemGroup Condition=" $(TargetFramework.StartsWith('monoandroid')) "> |
48 |
| - <Compile Include="**\*.android.cs" /> |
49 |
| - </ItemGroup> |
| 33 | + <ItemGroup Condition=" $(TargetFramework.StartsWith('xamarinios')) "> |
| 34 | + <Compile Include="**\*.ios.cs" /> |
| 35 | + </ItemGroup> |
50 | 36 |
|
51 |
| - <ItemGroup> |
52 |
| - <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" /> |
53 |
| - <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="5.0.1" /> |
54 |
| - <PackageReference Include="Notifo.SDK" Version="1.0.0-beta6" /> |
55 |
| - <PackageReference Include="Polly" Version="7.2.1" /> |
56 |
| - <PackageReference Include="RefactoringEssentials" Version="5.6.0"> |
57 |
| - <PrivateAssets>all</PrivateAssets> |
58 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
59 |
| - </PackageReference> |
60 |
| - <PackageReference Include="Serilog" Version="2.10.0" /> |
61 |
| - <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" /> |
62 |
| - <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> |
63 |
| - <PrivateAssets>all</PrivateAssets> |
64 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
65 |
| - </PackageReference> |
66 |
| - <PackageReference Include="System.Text.Json" Version="5.0.1" /> |
67 |
| - <PackageReference Include="Xamarin.Essentials" Version="1.6.1" /> |
68 |
| - </ItemGroup> |
| 37 | + <ItemGroup Condition=" $(TargetFramework.StartsWith('monoandroid')) "> |
| 38 | + <Compile Include="**\*.android.cs" /> |
| 39 | + </ItemGroup> |
69 | 40 |
|
70 |
| - <ItemGroup Condition="'$(TargetFramework)' == 'xamarinios10'"> |
71 |
| - <PackageReference Include="Serilog.Sinks.Xamarin"> |
72 |
| - <Version>0.2.0.64</Version> |
73 |
| - </PackageReference> |
74 |
| - </ItemGroup> |
| 41 | + <ItemGroup> |
| 42 | + <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" /> |
| 43 | + <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="5.0.1" /> |
| 44 | + <PackageReference Include="Notifo.SDK" Version="1.0.0-beta6" /> |
| 45 | + <PackageReference Include="Polly" Version="7.2.1" /> |
| 46 | + <PackageReference Include="RefactoringEssentials" Version="5.6.0"> |
| 47 | + <PrivateAssets>all</PrivateAssets> |
| 48 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 49 | + </PackageReference> |
| 50 | + <PackageReference Include="Serilog" Version="2.10.0" /> |
| 51 | + <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" /> |
| 52 | + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> |
| 53 | + <PrivateAssets>all</PrivateAssets> |
| 54 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 55 | + </PackageReference> |
| 56 | + <PackageReference Include="System.Text.Json" Version="5.0.1" /> |
| 57 | + <PackageReference Include="Xamarin.Essentials" Version="1.6.1" /> |
| 58 | + </ItemGroup> |
75 | 59 |
|
76 |
| - <ItemGroup Condition="'$(TargetFramework)' == 'monoandroid10.0'"> |
77 |
| - <PackageReference Include="Serilog.Sinks.Xamarin"> |
78 |
| - <Version>0.2.0.64</Version> |
79 |
| - </PackageReference> |
80 |
| - </ItemGroup> |
| 60 | + <ItemGroup Condition="'$(TargetFramework)' == 'xamarinios10'"> |
| 61 | + <PackageReference Include="Serilog.Sinks.Xamarin"> |
| 62 | + <Version>0.2.0.64</Version> |
| 63 | + </PackageReference> |
| 64 | + </ItemGroup> |
81 | 65 |
|
82 |
| - <ItemGroup> |
83 |
| - <Compile Update="Resources\Strings.Designer.cs"> |
84 |
| - <DesignTime>True</DesignTime> |
85 |
| - </Compile> |
86 |
| - </ItemGroup> |
| 66 | + <ItemGroup Condition="'$(TargetFramework)' == 'monoandroid10.0'"> |
| 67 | + <PackageReference Include="Serilog.Sinks.Xamarin"> |
| 68 | + <Version>0.2.0.64</Version> |
| 69 | + </PackageReference> |
| 70 | + </ItemGroup> |
| 71 | + |
| 72 | + <ItemGroup> |
| 73 | + <Compile Update="Resources\Strings.Designer.cs"> |
| 74 | + <DesignTime>True</DesignTime> |
| 75 | + </Compile> |
| 76 | + </ItemGroup> |
87 | 77 | </Project>
|
0 commit comments