mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
29 lines
950 B
XML
29 lines
950 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>SpaceWizards.Lidgren.Network</AssemblyName>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<DefaultItemExcludes>Lidgren.Network/**/*</DefaultItemExcludes>
|
|
<DefineConstants>$(DefineConstants);USE_RELEASE_STATISTICS</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<SkipRobustAnalyzer>true</SkipRobustAnalyzer>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>13.0</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="CursedHorrorsBeyondOurWildestImagination.cs" />
|
|
|
|
<Compile Include="Lidgren.Network\Lidgren.Network\**\*.cs">
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</Compile>
|
|
<Compile Remove="Lidgren.Network\Lidgren.Network\obj\**\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="../MSBuild/Robust.Properties.targets" />
|
|
</Project>
|