Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v239.0.0 + .NET 9 #1475

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ await server.WaitAssertion(() =>
{
playerUid = serverPlayerManager.Sessions.Single().AttachedEntity.GetValueOrDefault();
#pragma warning disable NUnit2045 // Interdependent assertions.
Assert.That(playerUid, Is.Not.EqualTo(default));
Assert.That(playerUid, Is.Not.EqualTo(default(EntityUid)));
// Making sure it exists
Assert.That(entManager.HasComponent<AlertsComponent>(playerUid));
#pragma warning restore NUnit2045
Expand Down
5 changes: 3 additions & 2 deletions Content.IntegrationTests/Tests/PostMapInitTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using Robust.Shared.Map;
using Robust.Shared.Map.Components;
using Robust.Shared.Prototypes;
using FastAccessors;
using Content.Shared.Station.Components;
using Robust.Shared.Utility;
using YamlDotNet.RepresentationModel;

Expand Down Expand Up @@ -65,7 +65,8 @@ public sealed class PostMapInitTest
"Submarine", //DeltaV
"Gax",
"Rad",
"Europa"
"Europa",
"Meta"
};

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Content.PatreonParser/Content.PatreonParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
Expand Down
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 93 files
+1 −1 .github/workflows/build-docfx.yml
+1 −1 .github/workflows/build-test.yml
+1 −1 .github/workflows/publish-client.yml
+1 −1 .github/workflows/test-content.yml
+46 −43 Directory.Packages.props
+1 −1 Lidgren.Network/Lidgren.Network.csproj
+1 −1 MSBuild/Robust.Engine.Version.props
+2 −2 MSBuild/Robust.Engine.props
+1 −1 MSBuild/Robust.Properties.targets
+36 −1 RELEASE-NOTES.md
+2 −6 Robust.Analyzers.Tests/AccessAnalyzer_Test.cs
+2 −3 Robust.Analyzers.Tests/DataDefinitionAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/DependencyAssignAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/DuplicateDependencyAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/MustCallBaseAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/NoUncachedRegexAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/PreferNonGenericVariantForTest.cs
+2 −3 Robust.Analyzers.Tests/PreferOtherTypeAnalyzerTest.cs
+2 −3 Robust.Analyzers.Tests/PreferOtherTypeFixerTest.cs
+7 −3 Robust.Analyzers.Tests/Robust.Analyzers.Tests.csproj
+4 −0 Robust.Benchmarks/Robust.Benchmarks.csproj
+3 −0 Robust.Client.NameGenerator/XamlUiPartialClassGenerator.cs
+2 −0 Robust.Client.WebView/Cef/BaseRobustCefClient.cs
+2 −0 Robust.Client.WebView/Cef/RobustCefApp.cs
+1 −0 Robust.Client.WebView/Cef/WebViewManagerCef.BrowserWindow.cs
+9 −6 Robust.Client.WebView/Cef/WebViewManagerCef.Control.cs
+1 −0 Robust.Client.WebView/Robust.Client.WebView.csproj
+1 −0 Robust.Client/GameController/GameController.Standalone.cs
+24 −22 Robust.Client/Graphics/Clyde/Clyde.Windowing.cs
+18 −0 Robust.Client/Graphics/Clyde/ClydeHeadless.cs
+2 −1 Robust.Client/Graphics/Clyde/Windowing/Glfw.Events.cs
+16 −37 Robust.Client/Graphics/Clyde/Windowing/Glfw.Windows.cs
+0 −4 Robust.Client/Graphics/Clyde/Windowing/Glfw.cs
+3 −3 Robust.Client/Graphics/Clyde/Windowing/IWindowingImpl.cs
+0 −8,929 Robust.Client/Graphics/Clyde/Windowing/SDL2Api.cs
+25 −0 Robust.Client/Graphics/Clyde/Windowing/SDL3-CS/LICENSE
+56 −0 Robust.Client/Graphics/Clyde/Windowing/SDL3-CS/SDL3.Core.Ext.cs
+8,043 −0 Robust.Client/Graphics/Clyde/Windowing/SDL3-CS/SDL3.Core.cs
+0 −224 Robust.Client/Graphics/Clyde/Windowing/Sdl2.Keys.cs
+0 −133 Robust.Client/Graphics/Clyde/Windowing/Sdl2.Monitors.cs
+0 −316 Robust.Client/Graphics/Clyde/Windowing/Sdl2.RawEvents.cs
+0 −586 Robust.Client/Graphics/Clyde/Windowing/Sdl2.Windows.cs
+0 −190 Robust.Client/Graphics/Clyde/Windowing/Sdl2.cs
+37 −33 Robust.Client/Graphics/Clyde/Windowing/Sdl3.Cursor.cs
+48 −63 Robust.Client/Graphics/Clyde/Windowing/Sdl3.Event.cs
+145 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.FileDialog.cs
+225 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.Key.cs
+133 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.Monitor.cs
+282 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.RawEvent.cs
+654 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.Window.cs
+105 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.WindowIcons.cs
+130 −100 Robust.Client/Graphics/Clyde/Windowing/Sdl3.WindowThread.cs
+226 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl3.cs
+37 −0 Robust.Client/Graphics/Clyde/Windowing/WsiShared.cs
+0 −24 Robust.Client/Graphics/IClyde.cs
+2 −0 Robust.Client/Graphics/IClydeInternal.cs
+24 −0 Robust.Client/Graphics/IClydeWindow.cs
+4 −1 Robust.Client/Robust.Client.csproj
+6 −4 Robust.Client/UserInterface/Controls/LineEdit.cs
+6 −5 Robust.Client/UserInterface/Controls/TextEdit.cs
+6 −0 Robust.Client/UserInterface/FileDialogManager.cs
+2 −2 Robust.Server/GameObjects/EntitySystems/MapLoaderSystem.cs
+4 −0 Robust.Server/Robust.Server.csproj
+118 −97 Robust.Shared.CompNetworkGenerator/ComponentNetworkGenerator.cs
+4 −4 Robust.Shared.Scripting/ILCommand.cs
+3 −1 Robust.Shared.Scripting/Robust.Shared.Scripting.csproj
+10 −3 Robust.Shared/Configuration/ConfigurationManager.cs
+2 −0 Robust.Shared/Configuration/IConfigurationManagerInternal.cs
+4 −2 Robust.Shared/Console/Commands/LogCommands.cs
+3 −3 Robust.Shared/ContentPack/AssemblyTypeChecker.cs
+2 −0 Robust.Shared/ContentPack/Sandbox.yml
+9 −0 Robust.Shared/GameObjects/Entity.cs
+9 −0 Robust.Shared/Log/ISawmill.cs
+6 −1 Robust.Shared/Log/LogManager.Sawmill.cs
+8 −3 Robust.Shared/Network/NetManager.cs
+4 −0 Robust.Shared/Robust.Shared.csproj
+9 −0 Robust.Shared/Serialization/Manager/Attributes/NotYamlSerializableAttribute.cs
+1 −2 Robust.Shared/Serialization/Manager/SerializationManager.Validation.cs
+59 −0 Robust.Shared/Serialization/Manager/SerializationManager.cs
+2 −1 Robust.Shared/Serialization/Markdown/NodeMark.cs
+5 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/ComponentRegistrySerializer.cs
+4 −2 Robust.Shared/Serialization/TypeSerializers/Implementations/Custom/Prototype/PrototypeIdSerializer.cs
+2 −2 Robust.Shared/Serialization/TypeSerializers/Implementations/EntProtoIdSerializer.cs
+1 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/Generic/ProtoIdSerializer.cs
+1 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/Vector2Serializer.cs
+1 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/Vector2iSerializer.cs
+1 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/Vector3Serializer.cs
+1 −1 Robust.Shared/Serialization/TypeSerializers/Implementations/Vector4Serializer.cs
+53 −0 Robust.UnitTesting/MockInterfaces.cs
+1 −0 Robust.UnitTesting/Shared/GameObjects/GenericEntityPrint.cs
+4 −2 Tools/package_webview.py
+1 −1 cefglue
+1 −1 global.json
Loading