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.
|
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <AssemblyName>Svelto.ECS</AssemblyName>
- <LangVersion>7.3</LangVersion>
- <TargetFramework>netstandard2.0</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <UseSharedCompilation>false</UseSharedCompilation>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <UseSharedCompilation>false</UseSharedCompilation>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Svelto.Common\Svelto.Common.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="System.Memory" Version="4.5.2" />
- <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview8.19405.3" />
- </ItemGroup>
- </Project>
|