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>
|
2022-06-09 18:25:59 -07:00
|
|
|
|
<PackageReference Include="ImGui.NET" Version="1.87.3" />
|
|
|
|
|
|
<PackageReference Include="OpenTK" Version="4.7.2" />
|
2021-07-04 18:11:52 +02:00
|
|
|
|
<PackageReference Include="Veldrid" Version="4.8.0" />
|
2022-06-09 18:25:59 -07:00
|
|
|
|
<PackageReference Include="Veldrid.SPIRV" Version="1.0.15" />
|
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" />
|
|
|
|
|
|
</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>
|