12345678910111213141516171819 |
- <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="assets\logo.png" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="assets\logo.png" />
- </ItemGroup>
- </Project>
|