WpfApp1.csproj 605 B

12345678910111213141516171819202122232425
  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="assets\Guitar.jpg" />
  11. <None Remove="Images\20.-1.png" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Resource Include="assets\Guitar.jpg" />
  18. <Resource Include="Images\20.-1.png" />
  19. </ItemGroup>
  20. </Project>