-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathCloudMessaging.csproj
89 lines (69 loc) · 3.51 KB
/
CloudMessaging.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
88
89
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net8.0-android;net8.0-ios</TargetFrameworks>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<!--Assembly and Namespace info -->
<AssemblyName>Plugin.Firebase.CloudMessaging</AssemblyName>
<RootNamespace>Plugin.Firebase.CloudMessaging</RootNamespace>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<NeutralLanguage>en</NeutralLanguage>
<!--Don't auto add files for me, I will tell you -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<!-- Helper to add defines-->
<DefineConstants>$(DefineConstants);</DefineConstants>
<!--Assembly and Namespace info -->
<PackageId>Plugin.Firebase.CloudMessaging</PackageId>
<PackageVersion>3.1.1</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TobiasBuchholz/Plugin.Firebase</PackageProjectUrl>
<RepositoryUrl>https://github.com/TobiasBuchholz/Plugin.Firebase</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>xamarin, ios, android</PackageTags>
<PackageReadmeFile>cloud_messaging.md</PackageReadmeFile>
<Title>Plugin.Firebase</Title>
<Summary>Xamarin wrapper around the native Android and iOS Firebase SDKs.</Summary>
<Description>The plugin includes cross-platform APIs for Firebase CloudMessaging.</Description>
<Owners>Tobias Buchholz</Owners>
<Authors>Tobias Buchholz</Authors>
<Copyright>Copyright 2023</Copyright>
<!--Version of C# to use -->
<LangVersion>default</LangVersion>
</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' ">
<DebugType>pdbonly</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<!-- This None is here so the conditionally included files show up in the Solution Explorer -->
<None Include="**\*.cs;**\*.xml;**\*.axml;**\*.png" Exclude="obj\**\*.*;bin\**\*.*;bin;obj" />
<None Remove=".vs\**" />
<None Remove=".idea\**" />
<None Include="..\..\art\icon.png" Pack="true" PackagePath="" />
<None Include="..\..\docs\cloud_messaging.md" Pack="true" PackagePath="\"/>
<Compile Include="Shared\**\*.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
<Compile Include="Platforms\Android\**\*.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
<Compile Include="Platforms\iOS\**\*.cs" />
</ItemGroup>
<!-- project references -->
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
<!-- nuget packages -->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
<PackageReference Include="Xamarin.Firebase.Messaging" Version="123.0.8" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
<PackageReference Include="AdamE.Firebase.iOS.CloudMessaging" Version="10.24.0" />
</ItemGroup>
</Project>