yavsc/src/Web/Web.csproj

18 lines
660 B
XML
Raw Normal View History

2024-11-12 08:32:15 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2025-06-13 15:22:02 +01:00
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2024-11-12 08:32:15 +00:00
<ItemGroup>
2026-02-14 16:54:27 +00:00
<ProjectReference Include="..\Abstract\Abstract.csproj" />
2025-07-14 18:58:04 +01:00
<PackageReference Include="IdentityModel.AspNetCore" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
2024-11-12 08:32:15 +00:00
</ItemGroup>
<ItemGroup>
2025-02-08 20:06:24 +00:00
<Content Update="Views\Shared\Json.cshtml">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
2024-11-12 08:32:15 +00:00
</ItemGroup>
2025-07-14 18:58:04 +01:00
</Project>