- Created new cache JSON files for rjsmcshtml, rjsmrazor, and rpswa in both net10.0 and net7.0 directories. - Added static web assets build configuration files in both net10.0 and net7.0 directories. - Included build endpoint configurations and cache files for static web assets. - Ensured all new files are properly initialized with relevant properties and hashes.
36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>9c90fee1-4576-4f20-be83-715728173b96</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="16.1.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.8">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Authentication\" />
|
|
<Folder Include="Dto\Deployment\Delete\" />
|
|
<Folder Include="logs\" />
|
|
<Folder Include="Migrations\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|