mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
51 lines
2.5 KiB
XML
51 lines
2.5 KiB
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>8</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputType>Exe</OutputType>
|
|
<Platforms>x64</Platforms>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Client</OutputPath>
|
|
<NoWarn>NU1701</NoWarn>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.147" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
|
<PackageReference Include="nfluidsynth" Version="0.2.5" />
|
|
<PackageReference Include="NVorbis" Version="0.9.1" />
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="NJsonSchema" Version="10.1.4" />
|
|
<PackageReference Include="SixLabors.Core" Version="1.0.0-beta0007" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0006" />
|
|
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta0006" />
|
|
<PackageReference Condition="'$(TargetFramework)' == 'net472'" Include="System.Memory" Version="4.5.3" />
|
|
<PackageReference Include="YamlDotNet" Version="8.1.0" />
|
|
<PackageReference Include="OpenTK" Version="3.1.0" />
|
|
<PackageReference Include="SpaceWizards.SharpFont" Version="1.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lidgren.Network\Lidgren.Network.csproj" />
|
|
<ProjectReference Include="..\OpenToolkit.GraphicsLibraryFramework\OpenToolkit.GraphicsLibraryFramework.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Graphics\RSI\RSISchema.json">
|
|
<LogicalName>Robust.Client.Graphics.RSI.RSISchema.json</LogicalName>
|
|
</EmbeddedResource>
|
|
|
|
<EmbeddedResource Include="Graphics\Clyde\Shaders\*" />
|
|
</ItemGroup>
|
|
<Import Project="..\MSBuild\Robust.Engine.targets" />
|
|
<PropertyGroup>
|
|
<RobustToolsPath>../Tools</RobustToolsPath>
|
|
</PropertyGroup>
|
|
<Target Name="RobustAfterBuild" DependsOnTargets="ClientAfterBuild" AfterTargets="Build" />
|
|
</Project>
|