<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> <PropertyGroup> <TargetFramework>net8.0-windows</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <BaseOutputPath>..\</BaseOutputPath> <AppendTargetFrameworkToOutputPath>output</AppendTargetFrameworkToOutputPath> <UseWindowsForms>true</UseWindowsForms> <Platforms>AnyCPU;x64</Platforms> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\DH.Commons\DH.Commons.csproj" /> </ItemGroup> <ItemGroup> <Compile Update="Properties\Resources.Designer.cs"> <DesignTime>True</DesignTime> <AutoGen>True</AutoGen> <DependentUpon>Resources.resx</DependentUpon> </Compile> <Compile Update="Properties\Settings.Designer.cs"> <DesignTimeSharedInput>True</DesignTimeSharedInput> <DependentUpon>Settings.settings</DependentUpon> <AutoGen>True</AutoGen> </Compile> </ItemGroup> <ItemGroup> <None Update="Properties\Settings.settings"> <LastGenOutput>Settings.Designer.cs</LastGenOutput> <Generator>SettingsSingleFileGenerator</Generator> </None> </ItemGroup> </Project>