mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
52 lines
2.7 KiB
XML
52 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputType>WinExe</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Client</OutputPath>
|
|
<NoWarn>NU1701</NoWarn>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.166" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" PrivateAssets="All" />
|
|
<PackageReference Include="nfluidsynth" Version="0.3.0" />
|
|
<PackageReference Include="NVorbis" Version="0.10.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="NJsonSchema" Version="10.3.1" Condition="'$(Configuration)' == 'Debug'" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
|
|
<PackageReference Include="OpenToolkit.Graphics" Version="4.0.0-pre9.1" />
|
|
<PackageReference Include="OpenToolkit.OpenAL" Version="4.0.0-pre9.1" />
|
|
<PackageReference Include="SpaceWizards.SharpFont" Version="1.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(EnableClientScripting)' == 'True'">
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="3.8.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.8.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" />
|
|
|
|
<ProjectReference Include="..\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lidgren.Network\Lidgren.Network.csproj" />
|
|
<ProjectReference Include="..\OpenToolkit.GraphicsLibraryFramework\OpenToolkit.GraphicsLibraryFramework.csproj" />
|
|
<ProjectReference Include="..\Robust.Physics\Robust.Physics.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" Condition="'$(Configuration)' == 'Debug'">
|
|
<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>
|