-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
Fido2.csproj
28 lines (24 loc) · 1.01 KB
/
Fido2.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(SupportedTargetFrameworks)</TargetFrameworks>
<RootNamespace>Fido2NetLib</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<IsTrimmable>true</IsTrimmable>
<NoWarn>$(NoWarn);IDE0057</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Fido2.Models\Fido2.Models.csproj" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<PackageReference Include="NSec.Cryptography" Version="22.4.0" />
<PackageReference Include="System.Formats.Cbor" Version="6.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.0.2" />
</ItemGroup>
<ItemGroup>
<!--
The name of the file must equal to the name of the package which is currently
defaulting to the project file name (excluding file extension of course)...
-->
<Content Include="build/fido2.targets" PackagePath="build/" />
</ItemGroup>
</Project>