123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <WarningsAsErrors>Nullable</WarningsAsErrors>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <Configurations>Debug;Release;Steam;DevRelease</Configurations>
- <Platforms>AnyCPU;x64;x86</Platforms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|AnyCPU'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x64'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x86'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\ChunkyImageLib\ChunkyImageLib.csproj" />
- <ProjectReference Include="..\PixiEditor.ChangeableDocument.Gen\PixiEditor.ChangeableDocument.Gen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- </ItemGroup>
- </Project>
|