-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAuthlete.csproj
36 lines (34 loc) · 1.68 KB
/
Authlete.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ReleaseVersion>1.0.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
<PackageId>Authlete.Authlete</PackageId>
<PackageVersion>1.7.0</PackageVersion>
<Authors>Authlete</Authors>
<PackageLicenseUrl>https://github.com/authlete/authlete-csharp/LICENSE</PackageLicenseUrl>
<Owners>authlete</Owners>
<PackageProjectUrl>https://github.com/authlete/authlete-csharp</PackageProjectUrl>
<Summary>C# library for Authlete Web APIs</Summary>
<PackageTags>Authlete OAuth OpenID OpenIDConnect OIDC API Security SSO</PackageTags>
<Title>Authlete Library for C#</Title>
<Description>C# library for Authlete Web APIs with which you can build an authorization server and OpenID provider that complies with OAuth 2.0 and OpenID Connect.</Description>
<PackageIconUrl>https://github.com/authlete/authlete-csharp/authlete-logo.png</PackageIconUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\netstandard1.4\Authlete.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Folder Include="Dto\" />
<Folder Include="Types\" />
<Folder Include="Util\" />
<Folder Include="Web\" />
<Folder Include="Handler\" />
<Folder Include="Handler\Spi\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NuGet.Build.Packaging" Version="0.2.2" />
</ItemGroup>
</Project>