mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 03:56:32 +00:00
d9eadea1b5
* Update OAuth2 dependencies * Update oauth2 package
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<Version>1.0.2</Version>
|
|
<LangVersion>latest</LangVersion>
|
|
<Authors>Alexandru-Victor Macocian</Authors>
|
|
<Product>MTSC.OAuth2</Product>
|
|
<PackageProjectUrl>https://github.com/AlexMacocian/MTSC</PackageProjectUrl>
|
|
<PackageIconUrl>https://github.com/AlexMacocian/MTSC/blob/master/docs/MTSC_Logo.png</PackageIconUrl>
|
|
<RepositoryUrl>https://github.com/AlexMacocian/MTSC</RepositoryUrl>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE" Link="LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="6.23.1" />
|
|
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.23.1" />
|
|
<PackageReference Include="MTSC" Version="5.5.1" />
|
|
<PackageReference Include="SystemExtensions.NetStandard" Version="1.5.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|