WpfAppA.csproj 708 B

1234567891011121314151617181920212223242526
  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="bin\Debug\net8.0-windows\img\1.png" />
  11. <None Remove="bin\Debug\net8.0-windows\img\2.jpg" />
  12. <None Remove="bin\Debug\net8.0-windows\img\portrait.jpg" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Resource Include="bin\Debug\net8.0-windows\img\2.jpg" />
  16. <Resource Include="bin\Debug\net8.0-windows\img\portrait.jpg" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Folder Include="img\" />
  20. </ItemGroup>
  21. </Project>