This commit is contained in:
Matthew Podwysocki 2021-11-09 18:28:23 -05:00
Родитель a2d6b44254
Коммит 030276d8fa
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -5,7 +5,7 @@
<AssemblyName>Microsoft.Azure.NotificationHubs.Client</AssemblyName> <AssemblyName>Microsoft.Azure.NotificationHubs.Client</AssemblyName>
<!-- Target iOS, tvOS, macOS, and Android --> <!-- Target iOS, tvOS, macOS, and Android -->
<TargetFrameworks>Xamarin.iOS10;Xamarin.TVOS10;Xamarin.Mac20;MonoAndroid10.0;netstandard2.1;netstandard2.0</TargetFrameworks> <TargetFrameworks>Xamarin.iOS10;Xamarin.TVOS10;Xamarin.Mac20;MonoAndroid10.0;netstandard2.1;netstandard2.0;net5.0;net6.0</TargetFrameworks>
<Product>$(AssemblyName) ($(TargetFramework))</Product> <Product>$(AssemblyName) ($(TargetFramework))</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion> <AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion> <AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
@ -29,7 +29,7 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PackOnBuild>true</PackOnBuild> <PackOnBuild>true</PackOnBuild>
<PackageId>Microsoft.Azure.NotificationHubs.Client</PackageId> <PackageId>Microsoft.Azure.NotificationHubs.Client</PackageId>
<PackageVersion>1.0.0</PackageVersion> <PackageVersion>1.0.1</PackageVersion>
<PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-notificationhubs-xamarin/main/.github/icons/aznh-icon-128x128.png</PackageIconUrl> <PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-notificationhubs-xamarin/main/.github/icons/aznh-icon-128x128.png</PackageIconUrl>
<PackageIcon>aznh-icon-128x128.png</PackageIcon> <PackageIcon>aznh-icon-128x128.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
@ -71,8 +71,8 @@
<DebugType>full</DebugType> <DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>false</GenerateDocumentationFile> <GenerateDocumentationFile>false</GenerateDocumentationFile>
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants> <DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
@ -81,7 +81,8 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)'=='Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)'=='Release|AnyCPU' ">
<DebugType>embedded</DebugType> <DebugType>embedded</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
@ -89,7 +90,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<None Include="..\..\.github\icons\aznh-icon-128x128.png" Pack="true" PackagePath="\"/> <None Include="..\..\.github\icons\aznh-icon-128x128.png" Pack="true" PackagePath="\" />
<!-- This None is here so the conditionally included files show up in the Solution Explorer --> <!-- 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 Include="**\*.cs;**\*.xml;**\*.axml;**\*.png" Exclude="obj\**\*.*;bin\**\*.*;bin;obj" />
@ -99,7 +100,7 @@
</ItemGroup> </ItemGroup>
<!-- .NET Standard files have net.cs --> <!-- .NET Standard files have net.cs -->
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) "> <ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) OR '$(TargetFramework)'=='net5.0' OR '$(TargetFramework)'=='net6.0'">
<Compile Include="**\*.net.cs" /> <Compile Include="**\*.net.cs" />
</ItemGroup> </ItemGroup>