Update all project TFMs to net10.0, EF Core to 10.0.4, add Microsoft.Extensions.Hosting.WindowsServices, and suppress WFO1000 warning for WinForms project. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
859 B
XML
24 lines
859 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CutList.Core\CutList.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="10.0.4" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|