12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <ApplicationIcon>imageres_1_94.ico</ApplicationIcon>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="imageres_1_94.ico" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Settings1.Designer.cs">
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <AutoGen>True</AutoGen>
- <DependentUpon>Settings1.settings</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Update="Settings1.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>Settings1.Designer.cs</LastGenOutput>
- </None>
- </ItemGroup>
- </Project>
|