Files
wwdpublic/Content.MapRenderer/Content.MapRenderer.csproj
VMSolidus c72c517be1 Fix MapRenderer (#1985)
# Description

Just makes the Map Renderer ignore the recent ImageSharp vulnerability
(I verified that it was completely unrelated to our use-case).

# Changelog

No CL, this isn't playerfacing.

(cherry picked from commit ce7d467e0b4717155fedc85dcc60dc8697d7c7b4)
2025-03-21 18:25:41 +03:00

23 lines
819 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputPath>..\bin\Content.MapRenderer\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<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" />
<PackageReference Include="SixLabors.ImageSharp" />
</ItemGroup>
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
</Project>