mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
It apparently broke clean builds, as the dependencies aren't in the project asset list or something anymore. I tried to fix this, but it seems impossible to do without relying on .NET SDK internals, as there's no point in the NuGet graph walk process that seems cleanly extensible. Instead let's just do the much dumber thing: a bunch of .props files for content to import. Hooray! This also means that I have to go through and *explicitly* disable transitive dependencies everywhere in RT. This thankfully isn't too hard.
40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Engine.props"/>
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Shared.IntegrationTests</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="YamlDotNet" />
|
|
<PackageReference Include="prometheus-net" />
|
|
<PackageReference Include="JetBrains.Annotations"/>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="NUnit"/>
|
|
<PackageReference Include="NUnit3TestAdapter"/>
|
|
<PackageReference Include="NUnit.Analyzers"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NetSerializer\NetSerializer\NetSerializer.csproj" />
|
|
<ProjectReference Include="..\Robust.Client\Robust.Client.csproj" />
|
|
<ProjectReference Include="..\Robust.Server.Testing\Robust.Server.Testing.csproj" />
|
|
<ProjectReference Include="..\Robust.Server\Robust.Server.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Maths.Tests\Robust.Shared.Maths.Tests.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj"/>
|
|
<ProjectReference Include="..\Robust.Shared.Maths.Testing\Robust.Shared.Maths.Testing.csproj"/>
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj"/>
|
|
<ProjectReference Include="..\Robust.UnitTesting\Robust.UnitTesting.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="ContentPack\ZipTest.zip" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\MSBuild\Robust.Properties.targets"/>
|
|
<Import Project="..\MSBuild\Robust.CompNetworkGenerator.targets" />
|
|
</Project>
|