Skip to content

Commit 48a9cbe

Browse files
authored
Migrate MIEngine to .NET 8 (#1455)
1 parent 9d9a171 commit 48a9cbe

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/Build-And-Test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install .NET Core
3030
uses: actions/setup-dotnet@v3
3131
with:
32-
dotnet-version: 6.0.x
32+
dotnet-version: 8.0.x
3333

3434
- name: Setup MSBuild.exe
3535
uses: microsoft/setup-msbuild@v1.1
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install .NET Core
6262
uses: actions/setup-dotnet@v3
6363
with:
64-
dotnet-version: 6.0.x
64+
dotnet-version: 8.0.x
6565

6666
- name: Setup MSBuild.exe
6767
uses: microsoft/setup-msbuild@v1.1
@@ -119,7 +119,7 @@ jobs:
119119
- name: Install .NET Core
120120
uses: actions/setup-dotnet@v3
121121
with:
122-
dotnet-version: 6.0.x
122+
dotnet-version: 8.0.x
123123

124124
- name: Build
125125
run: dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln
@@ -160,7 +160,7 @@ jobs:
160160
- name: Install .NET Core
161161
uses: actions/setup-dotnet@v3
162162
with:
163-
dotnet-version: 6.0.x
163+
dotnet-version: 8.0.x
164164

165165
- name: Build
166166
run: dotnet build ${{ github.workspace }}/src/MIDebugEngine-Unix.sln

eng/pipelines/tasks/UseDotNet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ steps:
33
displayName: 'Use .NET Core sdk'
44
inputs:
55
packageType: sdk
6-
version: 6.x
6+
version: 8.x

src/OpenDebugAD7/OpenDebugAD7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<OutputPath>$(MIDefaultOutputPath)\vscode</OutputPath>
1515
<OutputType>Exe</OutputType>
1616
<DropSubDir>vscode</DropSubDir>
17-
<TargetFramework>net6.0</TargetFramework>
17+
<TargetFramework>net8.0</TargetFramework>
1818

1919
<!--
2020
For non-Windows platforms, .NET Core depends on libicu for data about locales and international settings.

src/tools/MakePIAPortableTool/MakePIAPortableTool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
7-
<TargetFramework>net6.0</TargetFramework>
7+
<TargetFramework>net8.0</TargetFramework>
88

99
<OutputPath>$(MIDefaultOutputPath)tools</OutputPath>
1010
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>

test/CppTests/CppTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="..\..\build\debuggertesting.settings.targets" />
33

44
<PropertyGroup>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66

77
<IsPackable>false</IsPackable>
88

test/CppTests/CppTests.nuspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
1515
</metadata>
1616
<files>
17-
<file src="$binRoot$CppTests.dll" target="lib\net6.0" />
18-
<file src="$binRoot$CppTests.pdb" target="lib\net6.0" />
19-
<file src="$binRoot$DebuggerTesting.dll" target="lib\net6.0" />
20-
<file src="$binRoot$DebuggerTesting.pdb" target="lib\net6.0" />
17+
<file src="$binRoot$CppTests.dll" target="lib\net8.0" />
18+
<file src="$binRoot$CppTests.pdb" target="lib\net8.0" />
19+
<file src="$binRoot$DebuggerTesting.dll" target="lib\net8.0" />
20+
<file src="$binRoot$DebuggerTesting.pdb" target="lib\net8.0" />
2121
<file src="$binRoot$contentFiles\**\*" target="contentFiles" />
2222
</files>
2323
</package>

test/DebugAdapterRunner/DebugAdapterRunner.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</dependencies>
1919
</metadata>
2020
<files>
21-
<file src="$binRoot$dar.dll" target="lib\net6.0" />
22-
<file src="$binRoot$dar.pdb" target="lib\net6.0" />
21+
<file src="$binRoot$dar.dll" target="lib\net8.0" />
22+
<file src="$binRoot$dar.pdb" target="lib\net8.0" />
2323
</files>
2424
</package>

test/DebuggerTesting/DebuggerTesting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="..\..\build\debuggertesting.settings.targets" />
33

44
<PropertyGroup>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66

77
<IsPackable>false</IsPackable>
88
</PropertyGroup>

0 commit comments

Comments
 (0)