1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="bin\Debug\net8.0-windows\img\1.png" />
- <None Remove="bin\Debug\net8.0-windows\img\2.jpg" />
- <None Remove="bin\Debug\net8.0-windows\img\portrait.jpg" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="bin\Debug\net8.0-windows\img\2.jpg" />
- <Resource Include="bin\Debug\net8.0-windows\img\portrait.jpg" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="img\" />
- </ItemGroup>
- </Project>
|