data_displayer.csproj 858 B

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <ApplicationIcon>imageres_1_94.ico</ApplicationIcon>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="imageres_1_94.ico" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Compile Update="Settings1.Designer.cs">
  15. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  16. <AutoGen>True</AutoGen>
  17. <DependentUpon>Settings1.settings</DependentUpon>
  18. </Compile>
  19. </ItemGroup>
  20. <ItemGroup>
  21. <None Update="Settings1.settings">
  22. <Generator>SettingsSingleFileGenerator</Generator>
  23. <LastGenOutput>Settings1.Designer.cs</LastGenOutput>
  24. </None>
  25. </ItemGroup>
  26. </Project>