WpfApp1.csproj 481 B

123456789101112131415161718192021
  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. <Resource Include="img\1.jpg">
  14. <CopyToOutputDirectory>Never</CopyToOutputDirectory>
  15. </Resource>
  16. </ItemGroup>
  17. </Project>