- Convert CutList.csproj to SDK-style project format - Convert SawCut.csproj to SDK-style project format - Remove obsolete packages.config files (now using PackageReference) - Remove App.config (not needed in .NET 8) - Update package references to use SDK-style format - Enable nullable reference types and implicit usings - Preserve publishing configuration for network deployment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
400 B
XML
14 lines
400 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.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>
|