mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<OutputType>Exe</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Server</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="5.0.0" />
|
|
<PackageReference Include="prometheus-net" Version="4.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.Loki" Version="3.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Primitives" Version="5.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lidgren.Network\Lidgren.Network.csproj" />
|
|
<ProjectReference Include="..\ManagedHttpListener\src\System.Net.HttpListener.csproj" />
|
|
<ProjectReference Include="..\Robust.Physics\Robust.Physics.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj" />
|
|
<ProjectReference Include="..\System.Net.HttpListener\src\System.Net.HttpListener.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="server_config.toml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<Import Project="..\MSBuild\Robust.Engine.targets" />
|
|
</Project>
|