Skip to content

Commit 0153c8d

Browse files
committed
Update RT, .NET 10
1 parent 26afc60 commit 0153c8d

File tree

12 files changed

+182
-70
lines changed

12 files changed

+182
-70
lines changed

Content.IntegrationTests/Content.IntegrationTests.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@
2626
<ProjectReference Include="..\OpenDreamShared\OpenDreamShared.csproj" />
2727
<ProjectReference Include="..\Content.Tests\Content.Tests.csproj" />
2828
<ProjectReference Include="..\DMCompiler\DMCompiler.csproj" />
29-
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
30-
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
31-
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
32-
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
33-
<ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
3429
</ItemGroup>
30+
31+
<Import Project="..\RobustToolbox\Imports\Client.props" />
32+
<Import Project="..\RobustToolbox\Imports\Server.props" />
33+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
34+
<Import Project="..\RobustToolbox\Imports\Testing.props" />
35+
3536
<ItemGroup>
3637
<DMProject Include="$(ProjectDir)\DMProject\**" />
3738
<DMStandard Include="..\DMCompiler\DMStandard\**" />

Content.Tests/Content.Tests.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,20 @@
2323
<PackageReference Include="NUnit.ConsoleRunner" />
2424
<PackageReference Include="NUnit3TestAdapter" />
2525
<PackageReference Include="Microsoft.NET.Test.Sdk" />
26+
<PackageReference Include="Serilog" />
2627
</ItemGroup>
2728
<ItemGroup>
2829
<ProjectReference Include="..\DMCompiler\DMCompiler.csproj" />
2930
<ProjectReference Include="..\OpenDreamClient\OpenDreamClient.csproj" />
3031
<ProjectReference Include="..\OpenDreamServer\OpenDreamServer.csproj" />
3132
<ProjectReference Include="..\OpenDreamShared\OpenDreamShared.csproj" />
32-
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
33-
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
34-
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
35-
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
36-
<ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
3733
</ItemGroup>
3834

35+
<Import Project="..\RobustToolbox\Imports\Client.props" />
36+
<Import Project="..\RobustToolbox\Imports\Server.props" />
37+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
38+
<Import Project="..\RobustToolbox\Imports\Testing.props" />
39+
3940
<ItemGroup>
4041
<!-- Copy DMProject to output directory. -->
4142
<Content Include="$(ProjectDir)\DMProject\**" CopyToOutputDirectory="PreserveNewest" LinkBase="DMProject\" />

DMCompiler/DMCompiler.csproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<Configurations>Debug;Release;Tools</Configurations>
77
<Platforms>AnyCPU</Platforms>
@@ -12,10 +12,8 @@
1212
<ItemGroup>
1313
<DMStandard Include="DMStandard\**" />
1414
</ItemGroup>
15-
16-
<ItemGroup>
17-
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
18-
</ItemGroup>
15+
16+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
1917

2018
<Target Name="CopyDMStandard" AfterTargets="AfterBuild">
2119
<Copy SourceFiles="@(DMStandard)" DestinationFiles="@(DMStandard->'$(OutDir)\DMStandard\%(RecursiveDir)%(Filename)%(Extension)')" />

DMDisassembler/DMDisassembler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Configurations>Debug;Release;Tools</Configurations>
66
<Platforms>AnyCPU</Platforms>
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

OpenDream.slnx

Lines changed: 141 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,14 @@
11
<Solution>
2+
<Properties Name="RobustToolbox">
3+
<Property Name="Features" Value="WebView" />
4+
</Properties>
25
<Configurations>
36
<BuildType Name="Debug" />
47
<BuildType Name="Release" />
58
<BuildType Name="Tools" />
69
<Platform Name="Any CPU" />
710
<Platform Name="x64" />
811
</Configurations>
9-
<Folder Name="/RobustToolbox/">
10-
<Project Path="RobustToolbox/Avalonia.Base/Avalonia.Base.csproj" />
11-
<Project Path="RobustToolbox/Lidgren.Network/Lidgren.Network.csproj" />
12-
<Project Path="RobustToolbox/NetSerializer/NetSerializer/NetSerializer.csproj" />
13-
<Project Path="RobustToolbox/OpenToolkit.GraphicsLibraryFramework/OpenToolkit.GraphicsLibraryFramework.csproj" />
14-
<Project Path="RobustToolbox/Robust.Analyzers/Robust.Analyzers.csproj" />
15-
<Project Path="RobustToolbox/Robust.Client.Injectors/Robust.Client.Injectors.csproj" />
16-
<Project Path="RobustToolbox/Robust.Client.NameGenerator/Robust.Client.NameGenerator.csproj" />
17-
<Project Path="RobustToolbox/Robust.Client.WebView/Robust.Client.WebView.csproj" />
18-
<Project Path="RobustToolbox/Robust.Client/Robust.Client.csproj" />
19-
<Project Path="RobustToolbox/Robust.LoaderApi/Robust.LoaderApi/Robust.LoaderApi.csproj" />
20-
<Project Path="RobustToolbox/Robust.Packaging/Robust.Packaging.csproj" />
21-
<Project Path="RobustToolbox/Robust.Serialization.Generator/Robust.Serialization.Generator.csproj" />
22-
<Project Path="RobustToolbox/Robust.Server/Robust.Server.csproj" />
23-
<Project Path="RobustToolbox/Robust.Shared.CompNetworkGenerator/Robust.Shared.CompNetworkGenerator.csproj" />
24-
<Project Path="RobustToolbox/Robust.Shared.Maths/Robust.Shared.Maths.csproj" />
25-
<Project Path="RobustToolbox/Robust.Shared.Scripting/Robust.Shared.Scripting.csproj" />
26-
<Project Path="RobustToolbox/Robust.Shared/Robust.Shared.csproj" />
27-
<Project Path="RobustToolbox/Robust.UnitTesting/Robust.UnitTesting.csproj" />
28-
<Project Path="RobustToolbox/Robust.Xaml/Robust.Xaml.csproj" />
29-
</Folder>
30-
<Folder Name="/RobustToolbox/cefglue/">
31-
<Project Path="RobustToolbox/cefglue/CefGlue/CefGlue.csproj" />
32-
</Folder>
33-
<Folder Name="/RobustToolbox/MSBuild/">
34-
<File Path="RobustToolbox/MSBuild/Robust.Analyzers.targets" />
35-
<File Path="RobustToolbox/MSBuild/Robust.DefineConstants.targets" />
36-
<File Path="RobustToolbox/MSBuild/Robust.Engine.targets" />
37-
<File Path="RobustToolbox/MSBuild/Robust.Properties.targets" />
38-
<File Path="RobustToolbox/MSBuild/XamlIL.targets" />
39-
</Folder>
40-
<Folder Name="/RobustToolbox/XamlX/">
41-
<Project Path="RobustToolbox/XamlX/src/XamlX.IL.Cecil/XamlX.IL.Cecil.csproj" />
42-
<Project Path="RobustToolbox/XamlX/src/XamlX.Runtime/XamlX.Runtime.csproj" />
43-
<Project Path="RobustToolbox/XamlX/src/XamlX/XamlX.csproj" />
44-
</Folder>
4512
<Folder Name="/TestGame/">
4613
<File Path="TestGame/code.dm" />
4714
<File Path="TestGame/environment.dme" />
@@ -72,4 +39,142 @@
7239
<Project Path="OpenDreamRuntime/OpenDreamRuntime.csproj" />
7340
<Project Path="OpenDreamServer/OpenDreamServer.csproj" />
7441
<Project Path="OpenDreamShared/OpenDreamShared.csproj" />
42+
<Folder Name="/RobustToolbox/.github/workflows/">
43+
<File Path="RobustToolbox/.github/workflows/benchmarks.yml" />
44+
<File Path="RobustToolbox/.github/workflows/build-all-configurations.yml" />
45+
<File Path="RobustToolbox/.github/workflows/build-docfx.yml" />
46+
<File Path="RobustToolbox/.github/workflows/build-test.yml" />
47+
<File Path="RobustToolbox/.github/workflows/codeql-analysis.yml" />
48+
<File Path="RobustToolbox/.github/workflows/publish-client.yml" />
49+
<File Path="RobustToolbox/.github/workflows/test-content.yml" />
50+
</Folder>
51+
<Folder Name="/RobustToolbox/cefglue/">
52+
<Project Path="RobustToolbox/cefglue/CefGlue/CefGlue.csproj">
53+
<BuildType Solution="DebugOpt|*" Project="Debug" />
54+
<BuildType Solution="Tools|*" Project="Release" />
55+
<Properties Name="RobustToolbox">
56+
<Property Name="Feature" Value="WebView" />
57+
</Properties>
58+
</Project>
59+
</Folder>
60+
<Folder Name="/RobustToolbox/Imports/">
61+
<File Path="RobustToolbox/Imports/Benchmarks.props" />
62+
<File Path="RobustToolbox/Imports/Client.props" />
63+
<File Path="RobustToolbox/Imports/Lidgren.props" />
64+
<File Path="RobustToolbox/Imports/Packaging.props" />
65+
<File Path="RobustToolbox/Imports/Server.props" />
66+
<File Path="RobustToolbox/Imports/Shared.props" />
67+
<File Path="RobustToolbox/Imports/Testing.props" />
68+
<File Path="RobustToolbox/Imports/WebView.props" />
69+
</Folder>
70+
<Folder Name="/RobustToolbox/MSBuild/">
71+
<File Path="RobustToolbox/MSBuild/Robust.Analyzers.targets" />
72+
<File Path="RobustToolbox/MSBuild/Robust.CompNetworkGenerator.targets" />
73+
<File Path="RobustToolbox/MSBuild/Robust.Configurations.props" />
74+
<File Path="RobustToolbox/MSBuild/Robust.DefineConstants.targets" />
75+
<File Path="RobustToolbox/MSBuild/Robust.Engine.props" />
76+
<File Path="RobustToolbox/MSBuild/Robust.Engine.targets" />
77+
<File Path="RobustToolbox/MSBuild/Robust.Engine.Version.props" />
78+
<File Path="RobustToolbox/MSBuild/Robust.Platform.props" />
79+
<File Path="RobustToolbox/MSBuild/Robust.ProjectReferences.targets" />
80+
<File Path="RobustToolbox/MSBuild/Robust.Properties.targets" />
81+
<File Path="RobustToolbox/MSBuild/Robust.Trimming.targets" />
82+
<File Path="RobustToolbox/MSBuild/XamlIL.targets" />
83+
</Folder>
84+
<Folder Name="/RobustToolbox/NetSerializer/">
85+
<Project Path="RobustToolbox/NetSerializer/NetSerializer/NetSerializer.csproj">
86+
<BuildType Solution="DebugOpt|*" Project="Debug" />
87+
<BuildType Solution="Tools|*" Project="Release" />
88+
</Project>
89+
</Folder>
90+
<Folder Name="/RobustToolbox/Project Files/">
91+
<File Path="RobustToolbox/Directory.Build.props" />
92+
<File Path="RobustToolbox/Directory.Packages.props" />
93+
<File Path="RobustToolbox/README.md" />
94+
<File Path="RobustToolbox/RELEASE-NOTES.md" />
95+
</Folder>
96+
<Folder Name="/RobustToolbox/Robust.LoaderApi/">
97+
<Project Path="RobustToolbox/Robust.LoaderApi/Robust.LoaderApi/Robust.LoaderApi.csproj">
98+
<BuildType Solution="DebugOpt|*" Project="Debug" />
99+
<BuildType Solution="Tools|*" Project="Release" />
100+
</Project>
101+
</Folder>
102+
<Folder Name="/RobustToolbox/Roslyn/">
103+
<Project Path="RobustToolbox/Robust.Analyzers.Tests/Robust.Analyzers.Tests.csproj" />
104+
<Project Path="RobustToolbox/Robust.Analyzers/Robust.Analyzers.csproj">
105+
<BuildType Solution="DebugOpt|*" Project="Debug" />
106+
<BuildType Solution="Tools|*" Project="Release" />
107+
</Project>
108+
<Project Path="RobustToolbox/Robust.Client.NameGenerator/Robust.Client.NameGenerator.csproj">
109+
<BuildType Solution="DebugOpt|*" Project="Debug" />
110+
<BuildType Solution="Tools|*" Project="Release" />
111+
</Project>
112+
<Project Path="RobustToolbox/Robust.Serialization.Generator/Robust.Serialization.Generator.csproj">
113+
<BuildType Solution="DebugOpt|*" Project="Debug" />
114+
<BuildType Solution="Tools|*" Project="Release" />
115+
</Project>
116+
<Project Path="RobustToolbox/Robust.Shared.CompNetworkGenerator/Robust.Shared.CompNetworkGenerator.csproj">
117+
<BuildType Solution="DebugOpt|*" Project="Debug" />
118+
<BuildType Solution="Tools|*" Project="Release" />
119+
</Project>
120+
</Folder>
121+
<Folder Name="/RobustToolbox/Tools/">
122+
<Project Path="RobustToolbox/Tools/Robust.SolutionGen/Robust.SolutionGen.csproj">
123+
<BuildType Solution="DebugOpt|*" Project="Debug" />
124+
<BuildType Solution="Tools|*" Project="Release" />
125+
</Project>
126+
</Folder>
127+
<Folder Name="/RobustToolbox/XamlX/">
128+
<Project Path="RobustToolbox/XamlX/src/XamlX.IL.Cecil/XamlX.IL.Cecil.csproj">
129+
<BuildType Solution="DebugOpt|*" Project="Debug" />
130+
<BuildType Solution="Tools|*" Project="Release" />
131+
</Project>
132+
<Project Path="RobustToolbox/XamlX/src/XamlX.Runtime/XamlX.Runtime.csproj">
133+
<BuildType Solution="DebugOpt|*" Project="Debug" />
134+
<BuildType Solution="Tools|*" Project="Release" />
135+
</Project>
136+
<Project Path="RobustToolbox/XamlX/src/XamlX/XamlX.csproj">
137+
<BuildType Solution="DebugOpt|*" Project="Debug" />
138+
<BuildType Solution="Tools|*" Project="Release" />
139+
</Project>
140+
</Folder>
141+
<Folder Name="/RobustToolbox/">
142+
<Project Path="RobustToolbox/Avalonia.Base/Avalonia.Base.csproj">
143+
<BuildType Solution="DebugOpt|*" Project="Debug" />
144+
<BuildType Solution="Tools|*" Project="Release" />
145+
</Project>
146+
<Project Path="RobustToolbox/Lidgren.Network/Lidgren.Network.csproj" />
147+
<Project Path="RobustToolbox/Robust.Benchmarks/Robust.Benchmarks.csproj" />
148+
<Project Path="RobustToolbox/Robust.Client.Injectors/Robust.Client.Injectors.csproj">
149+
<BuildType Solution="DebugOpt|*" Project="Debug" />
150+
<BuildType Solution="Tools|*" Project="Release" />
151+
</Project>
152+
<Project Path="RobustToolbox/Robust.Client.WebView/Robust.Client.WebView.csproj">
153+
<Properties Name="RobustToolbox">
154+
<Property Name="Feature" Value="WebView" />
155+
</Properties>
156+
</Project>
157+
<Project Path="RobustToolbox/Robust.Client.IntegrationTests/Robust.Client.IntegrationTests.csproj" />
158+
<Project Path="RobustToolbox/Robust.Client.Tests/Robust.Client.Tests.csproj" />
159+
<Project Path="RobustToolbox/Robust.Client/Robust.Client.csproj" />
160+
<Project Path="RobustToolbox/Robust.Packaging.Tests/Robust.Packaging.Tests.csproj" />
161+
<Project Path="RobustToolbox/Robust.Packaging/Robust.Packaging.csproj" />
162+
<Project Path="RobustToolbox/Robust.Server.IntegrationTests/Robust.Server.IntegrationTests.csproj" />
163+
<Project Path="RobustToolbox/Robust.Server.Testing/Robust.Server.Testing.csproj" />
164+
<Project Path="RobustToolbox/Robust.Server/Robust.Server.csproj" />
165+
<Project Path="RobustToolbox/Robust.Shared.IntegrationTests/Robust.Shared.IntegrationTests.csproj" />
166+
<Project Path="RobustToolbox/Robust.Shared.Maths.Testing/Robust.Shared.Maths.Testing.csproj" />
167+
<Project Path="RobustToolbox/Robust.Shared.Maths.Tests/Robust.Shared.Maths.Tests.csproj" />
168+
<Project Path="RobustToolbox/Robust.Shared.Maths/Robust.Shared.Maths.csproj" />
169+
<Project Path="RobustToolbox/Robust.Shared.Scripting/Robust.Shared.Scripting.csproj" />
170+
<Project Path="RobustToolbox/Robust.Shared.Testing/Robust.Shared.Testing.csproj" />
171+
<Project Path="RobustToolbox/Robust.Shared.Tests/Robust.Shared.Tests.csproj" />
172+
<Project Path="RobustToolbox/Robust.Shared/Robust.Shared.csproj" />
173+
<Project Path="RobustToolbox/Robust.UnitTesting/Robust.UnitTesting.csproj" />
174+
<Project Path="RobustToolbox/Robust.Xaml/Robust.Xaml.csproj">
175+
<BuildType Solution="DebugOpt|*" Project="Debug" />
176+
<BuildType Solution="Tools|*" Project="Release" />
177+
</Project>
178+
<File Path="RobustToolbox/RobustToolbox.slnx" />
179+
</Folder>
75180
</Solution>

OpenDreamClient/OpenDreamClient.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@
1212
</PropertyGroup>
1313
<ItemGroup>
1414
<ProjectReference Include="..\OpenDreamShared\OpenDreamShared.csproj" />
15-
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
16-
<ProjectReference Include="..\RobustToolbox\Robust.Client.WebView\Robust.Client.WebView.csproj" />
17-
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
18-
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
19-
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
2015
<PackageReference Include="SpaceWizards.Sodium" />
16+
<PackageReference Include="SixLabors.ImageSharp" />
2117
</ItemGroup>
18+
19+
<Import Project="..\RobustToolbox\Imports\Lidgren.props" />
20+
<Import Project="..\RobustToolbox\Imports\Client.props" />
21+
<Import Project="..\RobustToolbox\Imports\WebView.props" />
22+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
23+
2224
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
2325
<Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
2426
</Project>

OpenDreamPackageTool/OpenDreamPackageTool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<NoWarn>NU1507</NoWarn>

OpenDreamPackaging/OpenDreamPackaging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<NoWarn>NU1507</NoWarn>
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<Configurations>Debug;Release;Tools</Configurations>
@@ -10,15 +10,19 @@
1010
<ProjectReference Include="..\DMCompiler\DMCompiler.csproj" />
1111
<ProjectReference Include="..\OpenDreamPackaging\OpenDreamPackaging.csproj" />
1212
<ProjectReference Include="..\OpenDreamShared\OpenDreamShared.csproj" />
13-
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
1413
</ItemGroup>
14+
15+
<Import Project="..\RobustToolbox\Imports\Server.props" />
16+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
17+
1518
<ItemGroup>
1619
<PackageReference Include="Byond.TopicSender" />
1720
<PackageReference Include="Tracy-CSharp" />
1821
<PackageReference Include="OpenDreamByondApi" />
1922
<PackageReference Include="SpaceWizards.Sodium" />
23+
<PackageReference Include="SixLabors.ImageSharp" />
24+
<PackageReference Include="Microsoft.Data.Sqlite.Core" />
2025
</ItemGroup>
2126

2227
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
23-
<Import Project="..\RobustToolbox\MSBuild\Robust.Analyzers.targets" />
2428
</Project>

OpenDreamServer/OpenDreamServer.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@
2424
<ItemGroup>
2525
<ProjectReference Include="..\OpenDreamRuntime\OpenDreamRuntime.csproj" />
2626
<ProjectReference Include="..\OpenDreamShared\OpenDreamShared.csproj" />
27-
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
28-
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
29-
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
30-
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
3127
</ItemGroup>
28+
29+
<Import Project="..\RobustToolbox\Imports\Lidgren.props" />
30+
<Import Project="..\RobustToolbox\Imports\Server.props" />
31+
<Import Project="..\RobustToolbox\Imports\Shared.props" />
32+
3233
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
3334
</Project>

0 commit comments

Comments
 (0)