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>
21 lines
614 B
XML
21 lines
614 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CutList.Core\CutList.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" />
|
|
<PackageReference Include="ModelContextProtocol" Version="0.7.0-preview.1" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|