Co-authored-by: ike709 <ike709@github.com>
This commit is contained in:
ike709
2025-01-05 18:16:01 -06:00
committed by GitHub
parent 347d240fae
commit c2ca7c7811
9 changed files with 11 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0 uses: actions/setup-dotnet@v4.1.0
with: with:
dotnet-version: 8.0.x dotnet-version: 9.0.x
- name: Install dependencies - name: Install dependencies
run: dotnet restore run: dotnet restore

View File

@@ -22,7 +22,7 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0 uses: actions/setup-dotnet@v4.1.0
with: with:
dotnet-version: 8.0.x dotnet-version: 9.0.x
- name: Install dependencies - name: Install dependencies
run: dotnet restore run: dotnet restore
- name: Build - name: Build

View File

@@ -23,7 +23,7 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0 uses: actions/setup-dotnet@v4.1.0
with: with:
dotnet-version: 8.0.x dotnet-version: 9.0.x
- name: Package client - name: Package client
run: Tools/package_client_build.py -p windows mac linux run: Tools/package_client_build.py -p windows mac linux

View File

@@ -20,7 +20,7 @@ jobs:
- name: Setup .NET Core - name: Setup .NET Core
uses: actions/setup-dotnet@v4.1.0 uses: actions/setup-dotnet@v4.1.0
with: with:
dotnet-version: 8.0.x dotnet-version: 9.0.x
- name: Disable submodule autoupdate - name: Disable submodule autoupdate
run: touch BuildChecker/DISABLE_SUBMODULE_AUTOUPDATE run: touch BuildChecker/DISABLE_SUBMODULE_AUTOUPDATE

View File

@@ -12,7 +12,7 @@
<SkipRobustAnalyzer>true</SkipRobustAnalyzer> <SkipRobustAnalyzer>true</SkipRobustAnalyzer>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion> <LangVersion>13.0</LangVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@@ -1,8 +1,8 @@
<Project> <Project>
<!-- Engine-specific properties. Content should not use this file. --> <!-- Engine-specific properties. Content should not use this file. -->
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<LangVersion>12</LangVersion> <LangVersion>13</LangVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors> <WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup> </PropertyGroup>

View File

@@ -3,7 +3,7 @@
<!-- Import this at the end of any project files in Robust and Content. --> <!-- Import this at the end of any project files in Robust and Content. -->
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup> </PropertyGroup>

View File

@@ -1,4 +1,4 @@
# Release notes for RobustToolbox. # Release notes for RobustToolbox.
<!-- <!--
NOTE: automatically updated sometimes by version.py. NOTE: automatically updated sometimes by version.py.
@@ -35,7 +35,7 @@ END TEMPLATE-->
### Breaking changes ### Breaking changes
*None yet* * Robust now uses **.NET 9**.
### New features ### New features

View File

@@ -1,6 +1,6 @@
{ {
"sdk": { "sdk": {
"version": "8.0.100", "version": "9.0.100",
"rollForward": "latestFeature" "rollForward": "latestFeature"
} }
} }