yavsc/src/Yavsc.Web/Yavsc.Web.csproj

18 lines
673 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>
2026-04-19 17:23:18 +01:00
<TargetFramework>net10.0</TargetFramework>
2025-06-13 15:22:02 +01:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2024-11-12 08:32:15 +00:00
<ItemGroup>
2026-02-28 21:17:54 +00:00
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.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>
2026-05-28 22:18:26 +01:00
</Project>