123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net7.0-windows</TargetFramework>
- <UseWPF>true</UseWPF>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <Platforms>AnyCPU;x64;x86</Platforms>
- <Configurations>Debug;Release;Steam;DevRelease</Configurations>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="Images\PixiEditorLogo.png" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Tools.InnoSetup" Version="6.2.1" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="Images\PixiEditorLogo.png" />
- </ItemGroup>
- </Project>
|