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.

30 lines
1.3KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AssemblyName>Svelto.ECS</AssemblyName>
  4. <LangVersion>8</LangVersion>
  5. <TargetFramework>netstandard2.0</TargetFramework>
  6. <Company>Svelto</Company>
  7. <AssemblyVersion>3.2.1</AssemblyVersion>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <PackageId>Svelto.ECS</PackageId>
  11. <Authors>sebas77</Authors>
  12. <RepositoryUrl>https://github.com/sebas77/Svelto.ECS</RepositoryUrl>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  15. <PlatformTarget>AnyCPU</PlatformTarget>
  16. <UseSharedCompilation>false</UseSharedCompilation>
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <UseSharedCompilation>false</UseSharedCompilation>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. </PropertyGroup>
  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. <None Remove="**\*.meta" />
  28. <ProjectReference Include="..\com.sebaslab.svelto.common\Svelto.Common.csproj" />
  29. </ItemGroup>
  30. </Project>