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>
14 lines
401 B
XML
14 lines
401 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<!-- Disable auto-generation of assembly attributes to avoid conflicts with AssemblyInfo.cs -->
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|