PixiEditor.UpdateInstaller.csproj 767 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net7.0-windows</TargetFramework>
  5. <UseWPF>true</UseWPF>
  6. <ApplicationManifest>app.manifest</ApplicationManifest>
  7. <Platforms>AnyCPU;x64;x86</Platforms>
  8. <Configurations>Debug;Release;Steam;DevRelease</Configurations>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <None Remove="Images\PixiEditorLogo.png" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Tools.InnoSetup" Version="6.2.1" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Resource Include="Images\PixiEditorLogo.png" />
  21. </ItemGroup>
  22. </Project>