12 lines
474 B
XML
12 lines
474 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net9.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
|
||
|
|
<RootNamespace>Yavsc.Api</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
||
|
|
<ProjectReference Include="../Yavsc.Server/Yavsc.Server.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|