yavsc/src/sampleWebAsWebApiClient/sampleWebAsWebApiClient.csproj

21 lines
710 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>
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.Abstract.csproj" />
2025-02-11 04:45:05 +00:00
<PackageReference Include="IdentityModel.AspNetCore" Version="4.3.0" />
2025-07-10 15:19:28 +01:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.7" />
2024-11-12 08:32:15 +00:00
</ItemGroup>
2025-02-08 20:06:24 +00:00
2024-11-12 08:32:15 +00:00
<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-02-11 04:45:05 +00:00
2025-02-08 20:06:24 +00:00
</Project>