23 lines
798 B
XML
23 lines
798 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets"/>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<OutputPath>..\bin\Content.MapRenderer\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<Nullable>enable</Nullable>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Content.IntegrationTests\Content.IntegrationTests.csproj"/>
|
|
<ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NUnit" Version="3.13.3"/>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|