PixiEditor.UpdateInstaller.csproj 699 B

1234567891011121314151617181920212223242526
  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. <Platforms>AnyCPU;x64;x86</Platforms>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <None Remove="Images\PixiEditorLogo.png" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Tools.InnoSetup" Version="6.1.2" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Resource Include="Images\PixiEditorLogo.png" />
  20. </ItemGroup>
  21. </Project>