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.

28 lines
1.1KB

  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>
  8. <PackageId>Svelto.ECS</PackageId>
  9. <Authors>sebas77</Authors>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  12. <PlatformTarget>AnyCPU</PlatformTarget>
  13. <UseSharedCompilation>false</UseSharedCompilation>
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <UseSharedCompilation>false</UseSharedCompilation>
  19. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\com.sebaslab.svelto.common@3.1.0\Svelto.Common.csproj" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="System.Memory" Version="4.5.2" />
  26. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview8.19405.3" />
  27. </ItemGroup>
  28. </Project>