Skip to content

Commit

Permalink
.NET 8 compatibility (space-wizards#22461)
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 authored Dec 15, 2023
1 parent 36658d9 commit d0e7730
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docfx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-map-renderer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Get Engine Tag
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x

- name: Install dependencies
run: dotnet restore
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Package client
run: dotnet run --project Content.Packaging client --no-wipe-release

- name: Update Build Info
run: Tools/gen_build_info.py

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yaml-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion Content.Benchmarks/Content.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>11</LangVersion>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
Expand Down
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 69 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
+1 −1 Lidgren.Network/Lidgren.Network
+3 −0 Lidgren.Network/Lidgren.Network.csproj
+1 −1 MSBuild/Robust.Engine.Version.props
+2 −2 MSBuild/Robust.Engine.props
+1 −1 MSBuild/Robust.Properties.targets
+12 −1 RELEASE-NOTES.md
+14 −2 Robust.Client/Audio/AudioManager.Public.cs
+3 −4 Robust.Client/Audio/AudioSystem.cs
+17 −2 Robust.Client/Audio/Sources/BaseAudioSource.cs
+2 −0 Robust.Client/Console/Commands/Debug.cs
+21 −6 Robust.Client/Debugging/DebugRayDrawingSystem.cs
+19 −19 Robust.Client/GameObjects/EntitySystems/ContainerSystem.cs
+19 −21 Robust.Client/GameObjects/EntitySystems/MapSystem.cs
+2 −2 Robust.Client/GameStates/ClientGameStateManager.cs
+53 −13 Robust.Client/Graphics/Clyde/Clyde.GridRendering.cs
+1 −1 Robust.Client/Graphics/Clyde/Clyde.HLR.cs
+2 −0 Robust.Client/Graphics/Clyde/Clyde.cs
+14 −0 Robust.Client/Graphics/Overlays/GridOverlay.cs
+18 −0 Robust.Client/Graphics/Overlays/IGridOverlay.cs
+75 −88 Robust.Client/Map/TileEdgeOverlay.cs
+11 −4 Robust.Client/ResourceManagement/ResourceCache.cs
+1 −0 Robust.Client/Robust.Client.csproj
+1 −0 Robust.Client/UserInterface/Controls/BaseButton.cs
+4 −8 Robust.Server/Debugging/DebugRayDrawingSystem.cs
+1 −1 Robust.Server/GameObjects/EntitySystems/MapLoaderSystem.cs
+3 −3 Robust.Server/GameObjects/EntitySystems/VisibilitySystem.cs
+1 −1 Robust.Server/GameStates/PvsSystem.cs
+1 −0 Robust.Server/Robust.Server.csproj
+5 −0 Robust.Shared/Audio/Systems/SharedAudioSystem.cs
+15 −256 Robust.Shared/Containers/BaseContainer.cs
+4 −4 Robust.Shared/Containers/Container.cs
+19 −57 Robust.Shared/Containers/ContainerManagerComponent.cs
+4 −4 Robust.Shared/Containers/ContainerSlot.cs
+143 −4 Robust.Shared/Containers/SharedContainerSystem.Insert.cs
+77 −3 Robust.Shared/Containers/SharedContainerSystem.Remove.cs
+1 −1 Robust.Shared/Containers/SharedContainerSystem.Validation.cs
+77 −24 Robust.Shared/Containers/SharedContainerSystem.cs
+6 −6 Robust.Shared/ContentPack/ResourceManager.cs
+18 −16 Robust.Shared/Debugging/SharedDebugRayDrawingSystem.cs
+12 −5 Robust.Shared/Enums/OverlaySpaces.cs
+2 −18 Robust.Shared/GameObjects/Components/Transform/TransformComponent.cs
+492 −1 Robust.Shared/GameObjects/Entity.cs
+3 −3 Robust.Shared/GameObjects/EntityManager.Spawn.cs
+4 −1 Robust.Shared/GameObjects/EntityManager.cs
+1 −1 Robust.Shared/GameObjects/Systems/EntityLookup.Queries.cs
+1 −1 Robust.Shared/GameObjects/Systems/EntityLookupSystem.ComponentQueries.cs
+12 −2 Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs
+0 −36 Robust.Shared/GameObjects/Systems/SharedTransformSystem.cs
+14 −11 Robust.Shared/Network/Messages/MsgRay.cs
+1 −0 Robust.Shared/Network/NetManager.ServerAuth.cs
+2 −0 Robust.Shared/Network/NetManager.Upnp.cs
+6 −2 Robust.Shared/Network/NetManager.cs
+0 −25 Robust.Shared/Physics/DebugRayData.cs
+0 −1 Robust.Shared/Physics/RayCastResults.cs
+14 −4 Robust.Shared/Physics/Systems/SharedPhysicsSystem.Queries.cs
+18 −0 Robust.Shared/Utility/NullableHelper.cs
+32 −32 Robust.UnitTesting/Server/GameObjects/Components/Container_Test.cs
+1 −1 Robust.UnitTesting/Server/Maps/MapLoaderTest.cs
+9 −9 Robust.UnitTesting/Shared/GameObjects/ContainerTests.cs
+96 −2 Robust.UnitTesting/Shared/GameObjects/GenericEntityPrint.cs
+6 −4 Robust.UnitTesting/Shared/GameObjects/Systems/AnchoredSystemTests.cs
+4 −3 Robust.UnitTesting/Shared/Physics/Joints_Test.cs
+4 −4 Robust.UnitTesting/Shared/Physics/RecursiveUpdateTest.cs
+8 −8 Robust.UnitTesting/Shared/Spawning/EntitySpawnHelpersTest.cs
+1 −1 global.json
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.114",
"version": "8.0.100",
"rollForward": "latestFeature"
}
}

0 comments on commit d0e7730

Please sign in to comment.