Skip to content

Commit

Permalink
Migrate MIEngine to .NET 8 (#1455)
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw authored May 28, 2024
1 parent 9d9a171 commit 48a9cbe
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Build-And-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/tasks/UseDotNet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ steps:
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 6.x
version: 8.x
2 changes: 1 addition & 1 deletion src/OpenDebugAD7/OpenDebugAD7.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<OutputPath>$(MIDefaultOutputPath)\vscode</OutputPath>
<OutputType>Exe</OutputType>
<DropSubDir>vscode</DropSubDir>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<!--
For non-Windows platforms, .NET Core depends on libicu for data about locales and international settings.
Expand Down
2 changes: 1 addition & 1 deletion src/tools/MakePIAPortableTool/MakePIAPortableTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<OutputPath>$(MIDefaultOutputPath)tools</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
Expand Down
2 changes: 1 addition & 1 deletion test/CppTests/CppTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\build\debuggertesting.settings.targets" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand Down
8 changes: 4 additions & 4 deletions test/CppTests/CppTests.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
</metadata>
<files>
<file src="$binRoot$CppTests.dll" target="lib\net6.0" />
<file src="$binRoot$CppTests.pdb" target="lib\net6.0" />
<file src="$binRoot$DebuggerTesting.dll" target="lib\net6.0" />
<file src="$binRoot$DebuggerTesting.pdb" target="lib\net6.0" />
<file src="$binRoot$CppTests.dll" target="lib\net8.0" />
<file src="$binRoot$CppTests.pdb" target="lib\net8.0" />
<file src="$binRoot$DebuggerTesting.dll" target="lib\net8.0" />
<file src="$binRoot$DebuggerTesting.pdb" target="lib\net8.0" />
<file src="$binRoot$contentFiles\**\*" target="contentFiles" />
</files>
</package>
4 changes: 2 additions & 2 deletions test/DebugAdapterRunner/DebugAdapterRunner.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</dependencies>
</metadata>
<files>
<file src="$binRoot$dar.dll" target="lib\net6.0" />
<file src="$binRoot$dar.pdb" target="lib\net6.0" />
<file src="$binRoot$dar.dll" target="lib\net8.0" />
<file src="$binRoot$dar.pdb" target="lib\net8.0" />
</files>
</package>
2 changes: 1 addition & 1 deletion test/DebuggerTesting/DebuggerTesting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\build\debuggertesting.settings.targets" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 48a9cbe

Please sign in to comment.