| 12345678910111213141516171819202122232425 | <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">  <PropertyGroup>    <OutputType>WinExe</OutputType>    <TargetFramework>netcoreapp3.1</TargetFramework>    <UseWPF>true</UseWPF>    <ApplicationManifest>app.manifest</ApplicationManifest>  </PropertyGroup>  <ItemGroup>    <None Remove="Images\PixiEditorLogo.png" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Tools.InnoSetup" Version="6.0.5" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />  </ItemGroup>  <ItemGroup>    <Resource Include="Images\PixiEditorLogo.png" />  </ItemGroup></Project>
 |