-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathAppleAuth.csproj
41 lines (36 loc) · 1.59 KB
/
AppleAuth.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Danail Stoichkov</Authors>
<Company>Accedia JSC</Company>
<Product>AppleAuth.NET</Product>
<PackageId>AppleAuth.NET</PackageId>
<Description>AppleAuth.NET is a simple library that facilitates the implementation of "Sign in with Apple" in a .NET application.</Description>
<Copyright>Copyright (c) 2020 Accedia JSC</Copyright>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/Accedia/appleauth-net</RepositoryUrl>
<PackageReleaseNotes>Add parameters for base url and query strings</PackageReleaseNotes>
<PackageTags>apple signin aspnet net</PackageTags>
<Version>1.0.8</Version>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>C:\Users\danail.stoichkov\source\repos\AppleAuth\AppleAuth.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.5.1" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.7.0" />
<PackageReference Include="System.Text.Json" Version="4.7.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>