20 lines
729 B
XML
20 lines
729 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\Build.props"/>
|
|
|
|
<PropertyGroup>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<EnableDefaultContentItems>false</EnableDefaultContentItems>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Libraries\SPTarkov.Server.Core\SPTarkov.Server.Core.csproj"/>
|
|
<ProjectReference Include="..\..\Libraries\SPTarkov.Server.Assets\SPTarkov.Server.Assets.csproj"/>
|
|
<ProjectReference Include="..\..\Libraries\SPTarkov.Common\SPTarkov.Common.csproj"/>
|
|
<ProjectReference Include="..\..\Libraries\SPTarkov.DI\SPTarkov.DI.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|