auth-proxy/src/webauthn-proxy.csproj

25 lines
700 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fido2" Version="3.0.1" />
<PackageReference Include="Fido2.Models" Version="3.0.1" />
<PackageReference Include="Microsoft.Data.SQLite" Version="7.0.5" />
</ItemGroup>
<ItemGroup>
<Content Include="schema.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="login.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>