Skip to content

Commit 6e579b6

Browse files
authored
Migrate to .NET 10 and update GitHub workflows (#1346)
1 parent 6e4d030 commit 6e579b6

16 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: windows-latest
2323
strategy:
2424
matrix:
25-
dotnet-version: [ '8.0.x' ]
25+
dotnet-version: [ '10.0.x' ]
2626
node-version: [ '24.x' ]
2727
steps:
2828
- name: Checkout

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: windows-latest
1515
strategy:
1616
matrix:
17-
dotnet-version: [ '8.0.x' ]
17+
dotnet-version: [ '10.0.x' ]
1818
node-version: [ '24.x' ]
1919
steps:
2020
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</PropertyGroup>
3030

3131
<PropertyGroup>
32-
<TargetFrameworkVersion>net8.0</TargetFrameworkVersion>
32+
<TargetFrameworkVersion>net10.0</TargetFrameworkVersion>
3333
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
3434
<LangVersion>latest</LangVersion>
3535
<Nullable>enable</Nullable>

examples/fdc3-appdirectory/apps-with-intents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "native",
77
"description": "This is an example WPF application",
88
"details": {
9-
"path": "..\\..\\..\\..\\..\\..\\..\\..\\examples\\dotnet-diagnostics\\DiagnosticsExample\\bin\\Debug\\net8.0-windows\\DiagnosticsExample.exe"
9+
"path": "..\\..\\..\\..\\..\\..\\..\\..\\examples\\dotnet-diagnostics\\DiagnosticsExample\\bin\\Debug\\net10.0-windows\\DiagnosticsExample.exe"
1010
},
1111
"hostManifests": {
1212
"sail": { "inject-api": "2.0" },

prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.ProcessExplorer.Core.Tests/Processes/WindowsProcessInfoManager.Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ private static string GetTestApplicationPath()
229229
{
230230
var folder = GetEnvironmentFolder();
231231

232-
return Path.GetFullPath($@"../../../../MorganStanley.ComposeUI.TestConsoleApp/bin/{folder}/net8.0/MorganStanley.ComposeUI.TestConsoleApp.exe");
232+
return Path.GetFullPath($@"../../../../MorganStanley.ComposeUI.TestConsoleApp/bin/{folder}/net10.0/MorganStanley.ComposeUI.TestConsoleApp.exe");
233233
}
234234

235235
private static string GetSimpleTestApplicationPath()
236236
{
237237
var folder = GetEnvironmentFolder();
238238

239-
return Path.GetFullPath($"../../../../MorganStanley.ComposeUI.TestConsoleApp2/bin/{folder}/net8.0/MorganStanley.ComposeUI.TestConsoleApp2.exe");
239+
return Path.GetFullPath($"../../../../MorganStanley.ComposeUI.TestConsoleApp2/bin/{folder}/net10.0/MorganStanley.ComposeUI.TestConsoleApp2.exe");
240240
}
241241

242242
private static string GetEnvironmentFolder()

prototypes/process-explorer/dotnet/test/MorganStanley.ComposeUI.TestConsoleApp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
var folder = isDebug ? "Debug" : "Release";
2626
Console.WriteLine(folder);
2727

28-
var childProcess = Process.Start(Path.GetFullPath($"../../../../MorganStanley.ComposeUI.TestConsoleApp2/bin/{folder}/net8.0/MorganStanley.ComposeUI.TestConsoleApp2.exe"));
28+
var childProcess = Process.Start(Path.GetFullPath($"../../../../MorganStanley.ComposeUI.TestConsoleApp2/bin/{folder}/net10.0/MorganStanley.ComposeUI.TestConsoleApp2.exe"));
2929

3030
var sum = 0;
3131
for (int i = 0; i < 50000000; i++)

src/fdc3/dotnet/DesktopAgent.Client/test/IntegrationTests/MorganStanley.ComposeUI.Fdc3.DesktopAgent.Client.IntegrationTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>

src/fdc3/dotnet/DesktopAgent.Client/test/IntegrationTests/testAppDirectory.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"name": "app1",
7070
"type": "native",
7171
"details": {
72-
"path": "..\\..\\..\\..\\TestHelpers\\DesktopAgentClientConsoleApp\\bin\\Release\\net8.0\\DesktopAgentClientConsoleApp.exe"
72+
"path": "..\\..\\..\\..\\TestHelpers\\DesktopAgentClientConsoleApp\\bin\\Release\\net10.0\\DesktopAgentClientConsoleApp.exe"
7373
},
7474
"interop": {
7575
"intents": {

src/fdc3/dotnet/DesktopAgent.Client/test/MorganStanley.ComposeUI.Fdc3.DesktopAgent.Client.Tests/MorganStanley.ComposeUI.Fdc3.DesktopAgent.Client.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>

src/fdc3/dotnet/DesktopAgent.Client/test/MorganStanley.ComposeUI.Fdc3.DesktopAgent.Client.Tests/testAppDirectory.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"name": "app1",
7070
"type": "native",
7171
"details": {
72-
"path": "..\\..\\..\\..\\TestHelpers\\DesktopAgentClientConsoleApp\\bin\\Release\\net8.0\\DesktopAgentClientConsoleApp.exe"
72+
"path": "..\\..\\..\\..\\TestHelpers\\DesktopAgentClientConsoleApp\\bin\\Release\\net10.0\\DesktopAgentClientConsoleApp.exe"
7373
},
7474
"interop": {
7575
"intents": {

0 commit comments

Comments
 (0)