Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
978B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AssemblyName>Svelto.ECS</AssemblyName>
  4. <LangVersion>7.3</LangVersion>
  5. <TargetFramework>netstandard2.0</TargetFramework>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  8. <PlatformTarget>AnyCPU</PlatformTarget>
  9. <UseSharedCompilation>false</UseSharedCompilation>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  13. <PlatformTarget>AnyCPU</PlatformTarget>
  14. <UseSharedCompilation>false</UseSharedCompilation>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\Svelto.Common\Svelto.Common.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="System.Memory" Version="4.5.2" />
  22. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview8.19405.3" />
  23. </ItemGroup>
  24. </Project>