wpf_listbox.csproj 674 B

123456789101112131415161718192021222324252627
  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.webp" />
  11. <None Remove="Windows\img\1.webp" />
  12. <None Remove="Windows\img\2.jpg" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="CsvHelper" Version="32.0.1" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Resource Include="img\1.webp" />
  19. <Resource Include="Windows\img\1.webp" />
  20. <Resource Include="Windows\img\2.jpg" />
  21. </ItemGroup>
  22. </Project>