PixiEditor.UpdateInstaller.csproj 657 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net5.0-windows</TargetFramework>
  5. <UseWPF>true</UseWPF>
  6. <ApplicationManifest>app.manifest</ApplicationManifest>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <None Remove="Images\PixiEditorLogo.png" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Tools.InnoSetup" Version="6.0.5" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Resource Include="Images\PixiEditorLogo.png" />
  19. </ItemGroup>
  20. </Project>