mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
This will prevent them being referenced in content, so stuff like OpenTK isn't "accessible" from Content.Client.
21 lines
958 B
XML
21 lines
958 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<PropertyGroup>
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
|
<LangVersion>7.3</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Shared.Maths</OutputPath>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>x64</Platforms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.2" PrivateAssets="all"/>
|
|
</ItemGroup>
|
|
</Project>
|