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.2KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AssemblyName>Svelto.ECS</AssemblyName>
  4. <LangVersion>8</LangVersion>
  5. <TargetFramework>netstandard2.0</TargetFramework>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <PackageId>Svelto.ECS</PackageId>
  9. <Authors>sebas77</Authors>
  10. <RepositoryUrl>https://github.com/sebas77/Svelto.ECS</RepositoryUrl>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  13. <PlatformTarget>AnyCPU</PlatformTarget>
  14. <UseSharedCompilation>false</UseSharedCompilation>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <UseSharedCompilation>false</UseSharedCompilation>
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\com.sebaslab.svelto.common\Svelto.Common.csproj"/>
  24. <PackageReference Include="System.Memory" Version="4.5.2"/>
  25. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview8.19405.3"/>
  26. <None Remove="**\*.meta"/>
  27. </ItemGroup>
  28. </Project>