2021-07-04 18:11:52 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-11-09 15:05:07 +01:00
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2021-07-04 18:11:52 +02:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-12 23:22:01 +01:00
|
|
|
|
<PackageReference Include="ImGui.NET" />
|
|
|
|
|
|
<PackageReference Include="OpenTK" />
|
|
|
|
|
|
<PackageReference Include="Veldrid" />
|
|
|
|
|
|
<PackageReference Include="Veldrid.SPIRV" />
|
2021-07-04 18:11:52 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Content.Server\Content.Server.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
2023-11-29 11:00:12 +11:00
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
|
2021-07-04 18:11:52 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-03-06 20:38:07 +01:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2021-07-04 18:11:52 +02:00
|
|
|
|
</Project>
|