From fba3248c5962aae89a996ffb004d4dadf37c0163 Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Mon, 27 May 2024 12:04:54 -0700 Subject: [PATCH] Migrate MIEngine to .NET 8 --- .github/workflows/Build-And-Test.yml | 8 ++++---- eng/pipelines/tasks/UseDotNet.yml | 2 +- src/OpenDebugAD7/OpenDebugAD7.csproj | 2 +- src/tools/MakePIAPortableTool/MakePIAPortableTool.csproj | 2 +- test/CppTests/CppTests.csproj | 2 +- test/CppTests/CppTests.nuspec | 8 ++++---- test/DebugAdapterRunner/DebugAdapterRunner.nuspec | 4 ++-- test/DebuggerTesting/DebuggerTesting.csproj | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/Build-And-Test.yml b/.github/workflows/Build-And-Test.yml index 3fd4729f1..39e9e12c5 100644 --- a/.github/workflows/Build-And-Test.yml +++ b/.github/workflows/Build-And-Test.yml @@ -29,7 +29,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v1.1 @@ -61,7 +61,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v1.1 @@ -119,7 +119,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Build run: dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln @@ -160,7 +160,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Build run: dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln diff --git a/eng/pipelines/tasks/UseDotNet.yml b/eng/pipelines/tasks/UseDotNet.yml index 7c13aa7a3..eb4589924 100644 --- a/eng/pipelines/tasks/UseDotNet.yml +++ b/eng/pipelines/tasks/UseDotNet.yml @@ -3,4 +3,4 @@ steps: displayName: 'Use .NET Core sdk' inputs: packageType: sdk - version: 6.x \ No newline at end of file + version: 8.x \ No newline at end of file diff --git a/src/OpenDebugAD7/OpenDebugAD7.csproj b/src/OpenDebugAD7/OpenDebugAD7.csproj index 7f69b31be..2529b0c82 100644 --- a/src/OpenDebugAD7/OpenDebugAD7.csproj +++ b/src/OpenDebugAD7/OpenDebugAD7.csproj @@ -14,7 +14,7 @@ $(MIDefaultOutputPath)\vscode Exe vscode - net6.0 + net8.0