mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
19 lines
620 B
XML
19 lines
620 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<DefaultItemExcludes>Lidgren.Network/**/*</DefaultItemExcludes>
|
|
<DefineConstants>$(DefineConstants);USE_RELEASE_STATISTICS</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Lidgren.Network\Lidgren.Network\**\*.cs">
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|