mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
* Make ServerPackaging automatically get extra server assemblies * Make the switch * Use Content.Server.deps.json instead * Remove debug * Rewrite Now recursively fetches dependencies from Content.Server Only copies dependencies not covered by Robust This removes the need to manually specify most of the dependencies, even the content ones! Also look at runtime key properly to figure out the proper dll name. This actually removes some assemblies that were duplicated between the main directory and assemblies (various Microsoft.Extensions stuff) * Fix test compile errors when updating dependencies Ran across this while updating dependencies on the RT .NET 10 update. Should be fine to merge immediately. * More .NET 10 prep * Convert to SLNX Hell yeah * slnx now has size-2 indents * Update SLNX with new RT system * Remove reference to RT test in toolshed test * Remove accidental usage of transitive RT dependencies * Move Robust project references to RobustApi * Update solution file * Fix warnings in pow3r * Fix nullable warnings in integration tests idk where these came from * gitignore binlog files * Fix transitive dependency warnings in Content.Benchmarks * Update slnx * Okay, the Robust API thing didn't pan out. New plan. 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. * Update RT to 269.0.0 * One last solution update * Fix more data definition issues * Update RT to 269.0.1 * Fix it again --------- Co-authored-by: DrSmugleaf <drsmugleaf@gmail.com>
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<OutputPath>..\bin\Content.YAMLLinter\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<IsTestingPlatformApplication>false</IsTestingPlatformApplication>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="../MSBuild/Content.props" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Content.Client\Content.Client.csproj" />
|
|
<ProjectReference Include="..\Content.Server\Content.Server.csproj" />
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
|
<ProjectReference Include="..\Content.IntegrationTests\Content.IntegrationTests.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NUnit" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
|
|
|
<Import Project="..\RobustToolbox\Imports\Client.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Server.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Shared.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Testing.props" />
|
|
|
|
</Project>
|