PixiEditor.ChangeableDocument.csproj 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <WarningsAsErrors>Nullable</WarningsAsErrors>
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. <Configurations>Debug;Release;Steam;DevRelease</Configurations>
  9. <Platforms>AnyCPU;x64;x86</Platforms>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|AnyCPU'">
  12. <Optimize>True</Optimize>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x64'">
  15. <Optimize>True</Optimize>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x86'">
  18. <Optimize>True</Optimize>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\ChunkyImageLib\ChunkyImageLib.csproj" />
  22. <ProjectReference Include="..\PixiEditor.ChangeableDocument.Gen\PixiEditor.ChangeableDocument.Gen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  23. </ItemGroup>
  24. </Project>