yavsc/src/Api/Api.csproj

13 lines
494 B
XML
Raw Normal View History

2025-07-14 18:58:04 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2025-02-11 04:45:05 +00:00
<PropertyGroup>
2025-06-13 15:22:02 +01:00
<TargetFramework>net9.0</TargetFramework>
2025-02-11 04:45:05 +00:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2025-02-16 22:40:51 +00:00
<UserSecretsId>1c73094f-959f-4211-b1a1-6a69b236c283</UserSecretsId>
2026-02-22 23:39:56 +00:00
<RootNamespace>Yavsc.Api</RootNamespace>
2025-02-11 04:45:05 +00:00
</PropertyGroup>
2025-07-14 18:58:04 +01:00
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
2026-02-14 16:54:27 +00:00
<ProjectReference Include="../Server/Server.csproj" />
2025-07-14 18:58:04 +01:00
</ItemGroup>
2026-02-22 23:39:56 +00:00
</Project>