forked from thudugala/Plugin.LocalNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.LocalNotification.csproj
87 lines (76 loc) · 3.58 KB
/
Plugin.LocalNotification.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Project Sdk="MSBuild.Sdk.Extras/3.0.23">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;MonoAndroid10.0;MonoAndroid11.0;Xamarin.iOS10</TargetFrameworks>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<DefaultLanguage>en-US</DefaultLanguage>
<AutoGenerateBindingRedirects>True</AutoGenerateBindingRedirects>
<NeutralLanguage>en</NeutralLanguage>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Elvin (Tharindu) Thudugala</Authors>
<PackageTags>android, ios, xamarin, xamarin.forms, local, notification, local.notification</PackageTags>
<PackageProjectUrl>https://github.com/thudugala/Plugin.LocalNotification</PackageProjectUrl>
<RepositoryUrl>https://github.com/thudugala/Plugin.LocalNotification</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>The local notification plugin provides a way to show local notifications from Xamarin apps.</Description>
<PackageIcon>icon.png</PackageIcon>
<Copyright>Copyright © Elvin (Tharindu) Thudugala</Copyright>
<Version>9.0.0-preview02</Version>
<PackageReleaseNotes>Check: https://github.com/thudugala/Plugin.LocalNotification/releases </PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<CodeAnalysisRuleSet>Plugin.LocalNotification.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Screenshots\icon.png" Pack="true" PackagePath="" Link="Properties\icon.png" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**/Platform/**/*.cs" />
<None Include="**/Platform/**/*.cs" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('MonoAndroid'))">
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.3.2.3" />
<Compile Include="**/Platform/Droid/**/*.cs" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.iOS'))">
<Compile Include="**/Platform/iOS/**/*.cs" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="NotificationAction.cs">
<SubType></SubType>
</Compile>
<Compile Update="NotificationCategory.cs">
<SubType></SubType>
</Compile>
<Compile Update="iOSOption\iOSActionType.cs">
<SubType></SubType>
</Compile>
<Compile Update="NotificationCategories.cs">
<SubType></SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>