wpf_data.csproj 500 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <None Remove="img\1.jpg" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="CsvHelper" Version="32.0.1" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Resource Include="img\1.jpg" />
  17. </ItemGroup>
  18. </Project>