-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathPlugin.AzurePushNotification.csproj
More file actions
79 lines (68 loc) · 3.73 KB
/
Plugin.AzurePushNotification.csproj
File metadata and controls
79 lines (68 loc) · 3.73 KB
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
<Project Sdk="MSBuild.Sdk.Extras/2.0.41">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;MonoAndroid10.0;Xamarin.iOS10;</TargetFrameworks>
<AssemblyName>Plugin.AzurePushNotification</AssemblyName>
<RootNamespace>Plugin.AzurePushNotification</RootNamespace>
<PackageId>Plugin.AzurePushNotification</PackageId>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<AssemblyVersion>2.0.0</AssemblyVersion>
<AssemblyFileVersion>2.0.0</AssemblyFileVersion>
<Version>2.0.0</Version>
<PackOnBuild>true</PackOnBuild>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>default</LangVersion>
<DefineConstants>$(DefineConstants);</DefineConstants>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<LangVersion>latest</LangVersion>
<PackageLicenseUrl>https://github.com/CrossGeeks/AzurePushNotificationPlugin/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/CrossGeeks/AzurePushNotificationPlugin</PackageProjectUrl>
<PackageIconUrl>https://github.com/CrossGeeks/AzurePushNotificationPlugin/blob/master/art/icon.png?raw=true</PackageIconUrl>
<RepositoryUrl>https://github.com/CrossGeeks/AzurePushNotificationPlugin</RepositoryUrl>
<PackageTags>iOS,Android,azure,notifications hub,push notifications,xamarin,plugins,fcm,apn</PackageTags>
<Title>Azure Push Notification Plugin for Xamarin</Title>
<Summary>Receive and handle azure push notifications across Xamarin.iOS and Xamarin.Android</Summary>
<Description>Receive and handle azure push notifications across Xamarin.iOS and Xamarin.Android</Description>
<PackageReleaseNotes>[Fix] iOS 13 fix and dependencies upgraded</PackageReleaseNotes>
<Owners>crossgeeks,rdelrosario</Owners>
<Authors>Rendy Del Rosario</Authors>
<Copyright>Copyright 2017 CrossGeeks</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<!-- Define what happens on build and release -->
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DebugType>pdbonly</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Plugin.AzurePushNotification.xml</DocumentationFile>
<Company>Rendy Del Rosario</Company>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.shared.cs" />
<Compile Include="**\*.shared.*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Azure.NotificationHubs.Android" Version="1.1.4.1" />
<PackageReference Include="Xamarin.Firebase.Messaging" Version="122.0.0" />
<PackageReference Include="Xamarin.GooglePlayServices.Tasks" Version="117.2.1" />
<Compile Include="**\*.android.cs" />
<Compile Include="**\*.android.*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
<PackageReference Include="Xamarin.Azure.NotificationHubs.iOS" Version="3.1.1" />
<Compile Include="**\*.apple.cs" />
<Compile Include="**\*.apple.*.cs" />
</ItemGroup>
</Project>