-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathWebPush.csproj
executable file
·35 lines (28 loc) · 1.26 KB
/
WebPush.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;net6.0;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.12</Version>
<Authors>Cory Thompson</Authors>
<Company />
<Product />
<Description>Web Push library for C#</Description>
<PackageLicenseUrl>https://github.com/web-push-libs/web-push-csharp/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/web-push-libs/web-push-csharp/</PackageProjectUrl>
<RepositoryUrl>https://github.com/web-push-libs/web-push-csharp/</RepositoryUrl>
<PackageTags>web push notifications vapid</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Net.Http" Condition="'$(TargetFramework)' == 'net461'" />
</ItemGroup>
</Project>