Skip to content

Commit 21f13cf

Browse files
authored
Update RT, .NET 10 (#2479)
1 parent 26afc60 commit 21f13cf

File tree

17 files changed

+197
-83
lines changed

17 files changed

+197
-83
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup .NET Core
2929
uses: actions/setup-dotnet@v1
3030
with:
31-
dotnet-version: 9.0.x
31+
dotnet-version: 10.0.x
3232
- name: Install dependencies
3333
run: dotnet restore
3434
- name: Build

.github/workflows/compiler-test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup .NET Core
2626
uses: actions/setup-dotnet@v1
2727
with:
28-
dotnet-version: 9.0.x
28+
dotnet-version: 10.0.x
2929
- name: Install compiler dependencies
3030
run: dotnet restore main/DMCompiler/DMCompiler.csproj
3131
- name: Install disassembler dependencies
@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup .NET Core
5050
uses: actions/setup-dotnet@v1
5151
with:
52-
dotnet-version: 9.0.x
52+
dotnet-version: 10.0.x
5353
- name: Checkout Main
5454
uses: actions/checkout@v2
5555
with:
@@ -74,7 +74,7 @@ jobs:
7474
- name: Setup .NET Core
7575
uses: actions/setup-dotnet@v1
7676
with:
77-
dotnet-version: 9.0.x
77+
dotnet-version: 10.0.x
7878
- name: Pop build cache
7979
uses: actions/cache/restore@v4
8080
with:
@@ -99,7 +99,7 @@ jobs:
9999
- name: Setup .NET Core
100100
uses: actions/setup-dotnet@v1
101101
with:
102-
dotnet-version: 9.0.x
102+
dotnet-version: 10.0.x
103103
- name: Pop build cache
104104
uses: actions/cache/restore@v4
105105
with:
@@ -124,7 +124,7 @@ jobs:
124124
- name: Setup .NET Core
125125
uses: actions/setup-dotnet@v1
126126
with:
127-
dotnet-version: 9.0.x
127+
dotnet-version: 10.0.x
128128
- name: Pop build cache
129129
uses: actions/cache/restore@v4
130130
with:
@@ -147,7 +147,7 @@ jobs:
147147
- name: Setup .NET Core
148148
uses: actions/setup-dotnet@v1
149149
with:
150-
dotnet-version: 9.0.x
150+
dotnet-version: 10.0.x
151151
- name: Pop build cache
152152
uses: actions/cache/restore@v4
153153
with:
@@ -170,7 +170,7 @@ jobs:
170170
- name: Setup .NET Core
171171
uses: actions/setup-dotnet@v1
172172
with:
173-
dotnet-version: 9.0.x
173+
dotnet-version: 10.0.x
174174
- name: Pop build cache
175175
uses: actions/cache/restore@v4
176176
with:
@@ -193,7 +193,7 @@ jobs:
193193
- name: Setup .NET Core
194194
uses: actions/setup-dotnet@v1
195195
with:
196-
dotnet-version: 9.0.x
196+
dotnet-version: 10.0.x
197197
- name: Pop build cache
198198
uses: actions/cache/restore@v4
199199
with:
@@ -216,7 +216,7 @@ jobs:
216216
- name: Setup .NET Core
217217
uses: actions/setup-dotnet@v1
218218
with:
219-
dotnet-version: 9.0.x
219+
dotnet-version: 10.0.x
220220
- name: Pop build cache
221221
uses: actions/cache/restore@v4
222222
with:
@@ -239,7 +239,7 @@ jobs:
239239
- name: Setup .NET Core
240240
uses: actions/setup-dotnet@v1
241241
with:
242-
dotnet-version: 9.0.x
242+
dotnet-version: 10.0.x
243243
- name: Pop build cache
244244
uses: actions/cache/restore@v4
245245
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET Core
1919
uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: 9.0.x
21+
dotnet-version: 10.0.x
2222
- name: Setup Resharper
2323
run: dotnet tool install -g JetBrains.ReSharper.GlobalTools
2424
- name: Run Linter

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.IntegrationTests/ContentIntegrationTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ protected sealed override ClientIntegrationInstance StartClient(ClientIntegratio
2727

2828
options.ContentStart = true;
2929

30+
options.LoadTestAssembly = false;
3031
options.ContentAssemblies = new[] {
3132
typeof(OpenDreamShared.EntryPoint).Assembly,
3233
typeof(OpenDreamClient.EntryPoint).Assembly,
@@ -62,6 +63,7 @@ protected override ServerIntegrationInstance StartServer(ServerIntegrationOption
6263

6364
options.ContentStart = true;
6465

66+
options.LoadTestAssembly = false;
6567
options.ContentAssemblies = new[] {
6668
typeof(OpenDreamShared.EntryPoint).Assembly,
6769
typeof(OpenDreamRuntime.EntryPoint).Assembly,

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>

0 commit comments

Comments
 (0)