mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Use GLFW instead of OpenTK windows * Seems to work pretty well now. * Fix stackalloc issue on Framework. * Add GLFW project to sln. * Fix package downgrade. * Fix SLN more. * Please work. * Fix C# version error.
57 lines
3.1 KiB
XML
57 lines
3.1 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>7.3</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputType>Exe</OutputType>
|
|
<Platforms>x64</Platforms>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Client</OutputPath>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.6.0" />
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.121" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
|
<PackageReference Include="nfluidsynth" Version="0.2.4" />
|
|
<PackageReference Include="NVorbis" Version="0.8.6" />
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
<PackageReference Include="NJsonSchema" Version="10.0.23" />
|
|
<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="6.1.2" />
|
|
<PackageReference Include="OpenTK" Version="3.1.0" />
|
|
<PackageReference Include="SpaceWizards.SharpFont" Version="1.0.0" />
|
|
</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>
|
|
<!--Hahaha everything hurts and NuGet is making the package dirs inconsistently on some systems.-->
|
|
<Content Include="..\packages\opentk\3.1.0\content\OpenTK.dll.config" Condition="Exists('..\packages\opentk\3.1.0\content\OpenTK.dll.config')">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>false</Visible>
|
|
</Content>
|
|
<Content Include="..\..\packages\opentk\3.1.0\content\OpenTK.dll.config" Condition="Exists('..\..\packages\opentk\3.1.0\content\OpenTK.dll.config')">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>false</Visible>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Graphics\RSI\RSISchema.json">
|
|
<LogicalName>Robust.Client.Graphics.RSI.RSISchema.json</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<Import Project="..\MSBuild\Robust.Engine.targets" />
|
|
<Target Name="RobustAfterBuild" DependsOnTargets="CopyMiscDependencies;CopySwnfd;CopyGlfw" AfterTargets="Build" />
|
|
</Project>
|