diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6b165927c6..b631f02989 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,7 +16,7 @@ "settings": { "dotnet-interactive.kernelTransportArgs": [ "{dotnet_path}", - "/workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll", + "/workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net10.0/Microsoft.DotNet.Interactive.App.dll", "[vscode]", "stdio", "--working-dir", @@ -24,7 +24,7 @@ ], "dotnet-interactive.notebookParserArgs": [ "{dotnet_path}", - "/workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll", + "/workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net10.0/Microsoft.DotNet.Interactive.App.dll", "notebook-parser" ], "editor.formatOnSave": true, diff --git a/DEVELOPER-GUIDE.md b/DEVELOPER-GUIDE.md index 9705534143..d31c232a86 100644 --- a/DEVELOPER-GUIDE.md +++ b/DEVELOPER-GUIDE.md @@ -123,7 +123,7 @@ If you've made changes to `dotnet-interactive` and want to try them out with Vis ```json "dotnet-interactive.kernelTransportArgs": [ "{dotnet_path}", - "/PATH/TO/REPO/ROOT/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll", + "/PATH/TO/REPO/ROOT/artifacts/bin/dotnet-interactive/Debug/net10.0/Microsoft.DotNet.Interactive.App.dll", "[vscode]", "stdio", "--log-path", @@ -135,7 +135,7 @@ If you've made changes to `dotnet-interactive` and want to try them out with Vis "dotnet-interactive.notebookParserArgs": [ "{dotnet_path}", - "/PATH/TO/REPO/ROOT/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll", + "/PATH/TO/REPO/ROOT/artifacts/bin/dotnet-interactive/Debug/net10.0/Microsoft.DotNet.Interactive.App.dll", "notebook-parser", "--log-path", "/path/to/a/folder/for/your/parser-logs/", diff --git a/Directory.Packages.props b/Directory.Packages.props index 932e2c7104..25291504ae 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -2,7 +2,7 @@ true true - 4.14.0 + 5.0.0 2.14.1 @@ -19,8 +19,8 @@ - - + + @@ -89,13 +89,11 @@ - - diff --git a/eng/AfterSolutionBuild.targets b/eng/AfterSolutionBuild.targets index c2973dca54..49b9b7578e 100644 --- a/eng/AfterSolutionBuild.targets +++ b/eng/AfterSolutionBuild.targets @@ -43,8 +43,8 @@ - - + + $([System.IO.Path]::GetTempPath())/$([System.Guid]::NewGuid()) diff --git a/eng/perf-tests/perf-tests.csproj b/eng/perf-tests/perf-tests.csproj index 5bfc55c166..250cdaea47 100644 --- a/eng/perf-tests/perf-tests.csproj +++ b/eng/perf-tests/perf-tests.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 Exe PerfTests $(NoWarn);CS8032 diff --git a/global.json b/global.json index 0c27f65054..ea5e5f0df1 100644 --- a/global.json +++ b/global.json @@ -1,11 +1,11 @@ { "sdk": { - "version": "9.0.111", + "version": "10.0.100", "rollForward": "latestMinor", "allowPrerelease": false }, "tools": { - "dotnet": "9.0.111", + "dotnet": "10.0.100", "rollForward": "latestMinor" }, "msbuild-sdks": { diff --git a/samples/connect-wpf/WpfConnect.csproj b/samples/connect-wpf/WpfConnect.csproj index a2c28da7e0..a77a55b272 100644 --- a/samples/connect-wpf/WpfConnect.csproj +++ b/samples/connect-wpf/WpfConnect.csproj @@ -1,7 +1,7 @@  - net9.0-windows + net10.0-windows WinExe true 1 diff --git a/samples/extensions/ClockExtension/ClockExtension.csproj b/samples/extensions/ClockExtension/ClockExtension.csproj index 077d1f2537..0ba564a6bd 100644 --- a/samples/extensions/ClockExtension/ClockExtension.csproj +++ b/samples/extensions/ClockExtension/ClockExtension.csproj @@ -2,7 +2,7 @@ Library - net9.0 + net10.0 true true Formats dates as an SVG clock in .NET Interactive diff --git a/samples/extensions/Library.InteractiveExtension/Library.InteractiveExtension.csproj b/samples/extensions/Library.InteractiveExtension/Library.InteractiveExtension.csproj index 5f7e049013..36b92a1fdb 100644 --- a/samples/extensions/Library.InteractiveExtension/Library.InteractiveExtension.csproj +++ b/samples/extensions/Library.InteractiveExtension/Library.InteractiveExtension.csproj @@ -6,7 +6,7 @@ Library - net9.0 + net10.0 diff --git a/samples/extensions/Library.nuget/Library.nuget.csproj b/samples/extensions/Library.nuget/Library.nuget.csproj index aad8cde3b9..b3818c3522 100644 --- a/samples/extensions/Library.nuget/Library.nuget.csproj +++ b/samples/extensions/Library.nuget/Library.nuget.csproj @@ -2,7 +2,7 @@ Library - net9.0 + net10.0 false Library diff --git a/samples/extensions/Library/Library.csproj b/samples/extensions/Library/Library.csproj index 303bba9401..882eca6294 100644 --- a/samples/extensions/Library/Library.csproj +++ b/samples/extensions/Library/Library.csproj @@ -2,7 +2,7 @@ Library - net9.0 + net10.0 diff --git a/samples/extensions/SampleExtensions.Tests/SampleExtensions.Tests.csproj b/samples/extensions/SampleExtensions.Tests/SampleExtensions.Tests.csproj index 1f31785b45..e0d127904d 100644 --- a/samples/extensions/SampleExtensions.Tests/SampleExtensions.Tests.csproj +++ b/samples/extensions/SampleExtensions.Tests/SampleExtensions.Tests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 false diff --git a/samples/notebooks/powershell/Samples/Using-Microsoft-DataFrame.ipynb b/samples/notebooks/powershell/Samples/Using-Microsoft-DataFrame.ipynb index e4f73c42b4..75bbbc429a 100644 --- a/samples/notebooks/powershell/Samples/Using-Microsoft-DataFrame.ipynb +++ b/samples/notebooks/powershell/Samples/Using-Microsoft-DataFrame.ipynb @@ -331,7 +331,7 @@ { "data": { "text/html": [ - "

DataFrame - 49 rows

indexNameSIHandlesVMWSPMNPMPathCommandLineParentCompanyCPUFileVersionProductVersionDescriptionProduct__NounNameSafeHandleHandleBasePriorityExitCodeHasExitedStartTimeExitTimeIdMachineNameMaxWorkingSetMinWorkingSetModulesNonpagedSystemMemorySize64NonpagedSystemMemorySizePagedMemorySize64PagedMemorySizePagedSystemMemorySize64PagedSystemMemorySizePeakPagedMemorySize64PeakPagedMemorySizePeakWorkingSet64PeakWorkingSetPeakVirtualMemorySize64PeakVirtualMemorySizePriorityBoostEnabledPriorityClassPrivateMemorySize64PrivateMemorySizeProcessorAffinitySessionIdStartInfoThreadsHandleCountVirtualMemorySize64VirtualMemorySizeEnableRaisingEventsStandardInputStandardOutputStandardErrorWorkingSet64WorkingSetSynchronizingObjectMainModuleMainWindowHandleMainWindowTitleRespondingProcessNamePrivilegedProcessorTimeTotalProcessorTimeUserProcessorTimeSiteContainer
0
bash
3211
7
11419648
7442432
0
0
/usr/bin/bash/bin/bash --init-file /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.shSystem.Diagnostics.Process (node)
0.01
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
4076
0
False
2025-04-15 23:02:55Z
3211
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
8097792
8097792
11571200
11571200
False
Normal
4898816
4898816
16383
3211
System.Diagnostics.ProcessThreadCollection
7
11419648
11419648
False
7442432
7442432
System.Diagnostics.ProcessModule (bash)
0
True
bash2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
1
dotnet
200
425
2.8633206E+11
558338050
40632320
0
/usr/share/dotnet/dotnet/usr/bin/dotnet /home/vscode/.vscode-server/extensions/ionide.ionide-fsharp-7.25.7/bin/net9.0/fsautocomplete.dll --state-directory /home/vscode/.vscode-server/data/User/workspaceStorage/ab5616dd9688b134c429d622537566c6/Ionide.Ionide-fsharpSystem.Diagnostics.Process (node)
23.04
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
60
0
False
2025-04-15 23:02:17Z
793
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
40632320
40632320
40632320
40632320
0
0
659583000
659583000
2.86595E+11
-1.1678147E+09
False
Normal
1.6017777E+09
1.6017777E+09
16383
200
System.Diagnostics.ProcessThreadCollection
425
2.8633206E+11
-1.430741E+09
False
558338050
558338050
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:05Z2025-04-15 00:00:23Z2025-04-15 00:00:17Z
2
dotnet
200
214
2.7923094E+11
116449280
10092544
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/CPS/platforms/linux-arm64/node_modules/@microsoft/visualstudio-projectsystem-buildhost.linux-arm64/Microsoft.VisualStudio.ProjectSystem.Server.BuildHost.dllSystem.Diagnostics.Process (Microsoft.VisualStudio.Code.ServiceHost)
2.1
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
164
0
False
2025-04-15 23:02:19Z
1091
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
10092544
10092544
10092544
10092544
0
0
143843330
143843330
2.7936598E+11
193097730
False
Normal
174858240
174858240
16383
200
System.Diagnostics.ProcessThreadCollection
214
2.7923094E+11
58060800
False
116449280
116449280
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:02Z2025-04-15 00:00:01Z
3
dotnet
200
190
2.7980576E+11
176816130
2752512
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (dotnet)
9.66
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
200
0
False
2025-04-15 23:02:21Z
1243
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
2752512
2752512
2752512
2752512
0
0
209240060
209240060
2.79892E+11
719126500
False
Normal
234360830
234360830
16383
200
System.Diagnostics.ProcessThreadCollection
190
2.7980576E+11
632893440
False
176816130
176816130
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:02Z2025-04-15 00:00:09Z2025-04-15 00:00:07Z
4
dotnet
200
228
2.7983315E+11
202244100
655360
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (dotnet)
9.97
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
236
0
False
2025-04-15 23:02:21Z
1258
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
655360
655360
655360
655360
0
0
227659780
227659780
2.7991972E+11
746831900
False
Normal
246550530
246550530
16383
200
System.Diagnostics.ProcessThreadCollection
228
2.7983315E+11
660267000
False
202244100
202244100
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:02Z2025-04-15 00:00:09Z2025-04-15 00:00:07Z
5
dotnet
200
228
2.7976653E+11
195096580
131072
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (dotnet)
10.16
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1612
0
False
2025-04-15 23:02:21Z
1277
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
220213250
220213250
2.798441E+11
671207400
False
Normal
238268420
238268420
16383
200
System.Diagnostics.ProcessThreadCollection
228
2.7976653E+11
593653760
False
195096580
195096580
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:02Z2025-04-15 00:00:10Z2025-04-15 00:00:07Z
6
dotnet
200
222
2.7988954E+11
198148100
131072
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (dotnet)
9.87
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1692
0
False
2025-04-15 23:02:21Z
1295
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
218443780
218443780
2.8004925E+11
876372000
False
Normal
245649400
245649400
16383
200
System.Diagnostics.ProcessThreadCollection
222
2.7988954E+11
716664800
False
198148100
198148100
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:02Z2025-04-15 00:00:09Z2025-04-15 00:00:07Z
7
dotnet
200
195
2.790175E+11
110460930
0
0
/usr/share/dotnet/dotnet/usr/bin/dotnet /usr/share/dotnet/sdk/9.0.203/vstest.console.dll /parentprocessid:1008 /port:37741System.Diagnostics.Process (Microsoft.VisualStudio.Code.ServiceHost)
2.1
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1732
0
False
2025-04-15 23:02:26Z
1499
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
125464580
125464580
2.7904305E+11
-129830910
False
Normal
160505860
160505860
16383
200
System.Diagnostics.ProcessThreadCollection
195
2.790175E+11
-155398140
False
110460930
110460930
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:02Z2025-04-15 00:00:01Z
8
dotnet
200
234
2.7984193E+11
183812100
0
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.7
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1636
0
False
2025-04-15 23:02:30Z
1760
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
188821500
188821500
2.7997136E+11
798498800
False
Normal
237768700
237768700
16383
200
System.Diagnostics.ProcessThreadCollection
234
2.7984193E+11
669044740
False
183812100
183812100
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:06Z
9
dotnet
200
200
2.7988014E+11
167157760
393216
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.13
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1648
0
False
2025-04-15 23:02:30Z
1761
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
393216
393216
393216
393216
0
0
184340480
184340480
2.799753E+11
802414600
False
Normal
219865090
219865090
16383
200
System.Diagnostics.ProcessThreadCollection
200
2.7988014E+11
707248100
False
167157760
167157760
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:05Z
10
dotnet
200
196
2.7974264E+11
166674430
131072
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
6.98
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1584
0
False
2025-04-15 23:02:30Z
1762
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
174104580
174104580
2.7982073E+11
647843840
False
Normal
220258300
220258300
16383
200
System.Diagnostics.ProcessThreadCollection
196
2.7974264E+11
569753600
False
166674430
166674430
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:06Z2025-04-15 00:00:05Z
11
dotnet
200
236
2.7984246E+11
184614910
0
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.89
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1740
0
False
2025-04-15 23:02:30Z
1763
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
199217150
199217150
2.7992093E+11
748064800
False
Normal
236617730
236617730
16383
200
System.Diagnostics.ProcessThreadCollection
236
2.7984246E+11
669589500
False
184614910
184614910
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:06Z
12
dotnet
200
236
2.7977548E+11
188018690
0
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.91
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1880
0
False
2025-04-15 23:02:30Z
1764
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
199008260
199008260
2.798827E+11
709836800
False
Normal
240697340
240697340
16383
200
System.Diagnostics.ProcessThreadCollection
236
2.7977548E+11
602615800
False
188018690
188018690
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:06Z
13
dotnet
200
230
2.7990766E+11
185241600
262144
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.15
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1976
0
False
2025-04-15 23:02:30Z
1767
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
262144
262144
262144
262144
0
0
194613250
194613250
2.799939E+11
821018600
False
Normal
237379580
237379580
16383
200
System.Diagnostics.ProcessThreadCollection
230
2.7990766E+11
734785540
False
185241600
185241600
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:05Z
14
dotnet
200
196
2.7968432E+11
164032510
262144
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.42
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1992
0
False
2025-04-15 23:02:30Z
1768
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
262144
262144
262144
262144
0
0
169902080
169902080
2.7980608E+11
633192450
False
Normal
227737600
227737600
16383
200
System.Diagnostics.ProcessThreadCollection
196
2.7968432E+11
511426560
False
164032510
164032510
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:05Z
15
dotnet
200
196
2.7968432E+11
167194620
393216
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.5
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2044
0
False
2025-04-15 23:02:30Z
1769
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
393216
393216
393216
393216
0
0
172392450
172392450
2.7981087E+11
638009340
False
Normal
228958200
228958200
16383
200
System.Diagnostics.ProcessThreadCollection
196
2.7968432E+11
511426560
False
167194620
167194620
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:05Z
16
dotnet
200
200
2.7974553E+11
168185860
393216
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
7.22
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1840
0
False
2025-04-15 23:02:30Z
1771
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
393216
393216
393216
393216
0
0
172269570
172269570
2.798236E+11
650731500
False
Normal
223137800
223137800
16383
200
System.Diagnostics.ProcessThreadCollection
200
2.7974553E+11
572649500
False
168185860
168185860
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:01Z2025-04-15 00:00:07Z2025-04-15 00:00:05Z
17
dotnet
200
166
2.7931532E+11
129282050
131072
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
1.51
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1192
0
False
2025-04-15 23:02:30Z
1833
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
132005890
132005890
2.7941067E+11
237809660
False
Normal
187551740
187551740
16383
200
System.Diagnostics.ProcessThreadCollection
166
2.7931532E+11
142438400
False
129282050
129282050
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:01Z2025-04-15 00:00:01Z
18
dotnet
200
166
2.7925666E+11
132427780
655360
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
1.48
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
1228
0
False
2025-04-15 23:02:30Z
1834
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
655360
655360
655360
655360
0
0
132820990
132820990
2.7933825E+11
165384200
False
Normal
199475200
199475200
16383
200
System.Diagnostics.ProcessThreadCollection
166
2.7925666E+11
83795970
False
132427780
132427780
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:01Z2025-04-15 00:00:01Z
19
dotnet
200
166
2.7931532E+11
132587520
131072
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
1.42
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2260
0
False
2025-04-15 23:02:30Z
1835
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
132718590
132718590
2.793579E+11
185028600
False
Normal
190664700
190664700
16383
200
System.Diagnostics.ProcessThreadCollection
166
2.7931532E+11
142438400
False
132587520
132587520
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:01Z2025-04-15 00:00:01Z
20
dotnet
200
167
2.794577E+11
129945600
393216
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet /usr/share/dotnet/sdk/9.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:falseSystem.Diagnostics.Process (sh)
1.31
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2172
0
False
2025-04-15 23:02:30Z
1844
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
393216
393216
393216
393216
0
0
130207740
130207740
2.7950907E+11
336211970
False
Normal
196677630
196677630
16383
200
System.Diagnostics.ProcessThreadCollection
167
2.794577E+11
284803070
False
129945600
129945600
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:01Z2025-04-15 00:00:01Z
21
dotnet
200
138
2.83273E+11
1.1355177E+09
6291456
0
/usr/share/dotnet/dotnet/usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/9.0.203/Roslyn/bincore/VBCSCompiler.dll -pipename:_GWsJk4TCD_xAR2pm09savPEb3C8F1NdukRzYMkqBGkSystem.Diagnostics.Process (dotnet)
78.98
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2384
0
False
2025-04-15 23:02:49Z
2628
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
6291456
6291456
6291456
6291456
0
0
1.1929108E+09
1.1929108E+09
2.8356988E+11
102023170
False
Normal
1.286144E+09
1.286144E+09
16383
200
System.Diagnostics.ProcessThreadCollection
138
2.83273E+11
-194826240
False
1.1355177E+09
1.1355177E+09
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:03Z2025-04-15 00:01:18Z2025-04-15 00:01:15Z
22
dotnet
200
111
2.785049E+11
40452096
262144
0
/usr/share/dotnet/dotnetdotnet /workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll notebook-parserSystem.Diagnostics.Process (node)
0.09
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2124
0
False
2025-04-15 23:02:55Z
3169
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
262144
262144
262144
262144
0
0
41127936
41127936
2.7857188E+11
-601002000
False
Normal
116436990
116436990
16383
200
System.Diagnostics.ProcessThreadCollection
111
2.785049E+11
-667963400
False
40452096
40452096
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
23
dotnet
200
324
2.8044712E+11
451096580
0
0
/usr/share/dotnet/dotnetdotnet /workspaces/interactive/artifacts/bin/dotnet-interactive/Debug/net9.0/Microsoft.DotNet.Interactive.App.dll [vscode] stdio --working-dir /workspaces/interactive/samples/notebooks/powershell/SamplesSystem.Diagnostics.Process (node)
4.29062
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2432
0
False
2025-04-15 23:03:08Z
4103
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
451096580
451096580
2.8051423E+11
1.3413704E+09
False
Normal
547270660
547270660
16383
200
System.Diagnostics.ProcessThreadCollection
324
2.8044712E+11
1.2742615E+09
False
451096580
451096580
System.Diagnostics.ProcessModule (dotnet)
0
True
dotnet2025-04-15 00:00:00Z2025-04-15 00:00:04Z2025-04-15 00:00:03Z
24
Microsoft.CodeAnalysis.LanguageServer
832
282
2.813978E+11
432164860
33423360
0
/home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.roslyn/Microsoft.CodeAnalysis.LanguageServer/home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.roslyn/Microsoft.CodeAnalysis.LanguageServer --logLevel Information --razorSourceGenerator /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.razor/Microsoft.CodeAnalysis.Razor.Compiler.dll --razorDesignTimePath /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.razor/Targets/Microsoft.NET.Sdk.Razor.DesignTime.targets --devKitDependencyPath /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.roslynDevKit/Microsoft.VisualStudio.LanguageServices.DevKit.dll --sessionId 50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529 --extension /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.razorExtension/Microsoft.VisualStudioCode.RazorExtension.dll --extension /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.xamlTools/Microsoft.VisualStudio.DesignTools.CodeAnalysis.dll --extension /home/vscode/.vscode-server/extensions/ms-dotnettools.csharp-2.72.27-linux-arm64/.xamlTools/Microsoft.VisualStudio.DesignTools.CodeAnalysis.Diagnostics.dll --extension /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/VisualStudio.Conversations/node_modules/@microsoft/visualstudio.copilot.roslyn.languageserver/Microsoft.VisualStudio.Copilot.Roslyn.LanguageServer.dll --telemetryLevel all --extensionLogDirectory /home/vscode/.vscode-server/data/logs/20250415T230216/exthost1/ms-dotnettools.csharpSystem.Diagnostics.Process (node)
10.05
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2292
0
False
2025-04-15 23:02:17Z
832
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
33423360
33423360
33423360
33423360
0
0
561299460
561299460
2.8166865E+11
-1.7992008E+09
False
Normal
609374200
609374200
16383
832
System.Diagnostics.ProcessThreadCollection
282
2.813978E+11
-2.0700447E+09
False
432164860
432164860
System.Diagnostics.ProcessModule (Microsoft.CodeAnalysis.LanguageServer)
0
True
Microsoft.CodeAnalysis.LanguageServer2025-04-15 00:00:01Z2025-04-15 00:00:10Z2025-04-15 00:00:08Z
25
Microsoft.VisualStudio.Code.Server
200
360
2.799314E+11
104865790
25800704
0
/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-server.linux-arm64/Microsoft.VisualStudio.Code.Server/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-server.linux-arm64/Microsoft.VisualStudio.Code.Server --serviceHubConfigPath /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/servicehub/servicehub.config.json --pipe /tmp/198d7631-0cea-4cda-93b0-df1fb786cb7e --pipe-server /tmp/29eae35a-eb62-49aa-a99c-1e69698bcddb --log-directory /home/vscode/.vscode-server/data/logs/20250415T230216/exthost1/ms-dotnettools.csdevkit --log-verbosity Information --vscodeSessionId 50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529 --vscodeTelemetryLevel all --cache-directory /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/cache --component /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/CPS/platforms/linux-arm64/node_modules/@microsoft/msbuild-dependencies.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/CPS/platforms/linux-arm64/node_modules/@microsoft/visualstudio-projectsystem-buildhost-rpc.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/CPS/platforms/linux-arm64/node_modules/@microsoft/visualstudio-projectsystem-buildhost.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/CPS/platforms/linux-arm64/node_modules/@microsoft/visualstudio-projectsystem-server.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/VSDebugCore/platforms/linux-arm64/node_modules/@microsoft/visualstudio-debugger-devkit.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/VSUnitTesting/platforms/linux-arm64/node_modules/@microsoft/visualstudio-testwindow-vscode-service.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/VisualStudio.Conversations/node_modules/@microsoft/visualstudio.copilot.roslyn.languageserver /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/WebTools/node_modules/@microsoft/vscode.webtools /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/dotnet-project-system/node_modules/@microsoft/microsoft.visualstudio.projectsystem.managed /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/dotnet-project-system-vscode/node_modules/@microsoft/vscode.projectsystem.managed /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/dotnet-project-system-vscode/node_modules/@microsoft/vscode.templateengine /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/roslyn-visualstudio-languageservices-devkit/node_modules/@microsoft/visualstudio-languageservices-devkit /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-code-coverage/platforms/linux-arm64/node_modules/@microsoft/coverage-services.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicecontroller.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicehost.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-reliability-monitor.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-server-samples-sayhello.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-server-shared.linux-arm64 /home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-server.linux-arm64System.Diagnostics.Process (node)
5.69
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2296
0
False
2025-04-15 23:02:17Z
867
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
25800704
25800704
25800704
25800704
0
0
169484290
169484290
2.7998922E+11
816349200
False
Normal
247078910
247078910
16383
200
System.Diagnostics.ProcessThreadCollection
360
2.799314E+11
758513660
False
104865790
104865790
System.Diagnostics.ProcessModule (Microsoft.VisualStudio.Code.Server)
0
True
Microsoft.VisualStudio.Code.Server2025-04-15 00:00:02Z2025-04-15 00:00:05Z2025-04-15 00:00:03Z
26
Microsoft.VisualStudio.Code.ServiceController
200
217
2.7925076E+11
72986620
22134784
0
/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicecontroller.linux-arm64/Microsoft.VisualStudio.Code.ServiceController/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicecontroller.linux-arm64/Microsoft.VisualStudio.Code.ServiceController ac323e0ded /ControllerCooldownTimeout:30000 /TelemetrySession:{"TelemetryLevel":"all","IsOptedIn":false,"HostName":"Default","AppInsightsInstrumentationKey":null,"AsimovInstrumentationKey":null,"CollectorApiKey":"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255","AppId":1010,"UserId":"b34ecaa6-bb17-46f9-ae2f-ef3de4433574","Id":"50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529","ProcessStartTime":133892317379595048,"SkuName":null,"VSExeVersion":null,"BucketFiltersToEnableWatsonForFaults":[],"BucketFiltersToAddDumpsToFaults":[]}System.Diagnostics.Process (Microsoft.VisualStudio.Code.Server)
0.87
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2228
0
False
2025-04-15 23:02:18Z
942
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
22134784
22134784
22134784
22134784
0
0
123449340
123449340
2.7936034E+11
187478020
False
Normal
165171200
165171200
16383
200
System.Diagnostics.ProcessThreadCollection
217
2.7925076E+11
77881340
False
72986620
72986620
System.Diagnostics.ProcessModule (Microsoft.VisualStudio.Code.ServiceController)
0
True
Microsoft.VisualStudio.Code.ServiceController2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
27
Microsoft.VisualStudio.Code.ServiceHost
200
431
2.843109E+11
302284800
65142784
0
/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicehost.linux-arm64/Microsoft.VisualStudio.Code.ServiceHost/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicehost.linux-arm64/Microsoft.VisualStudio.Code.ServiceHost dotnet.projectSystem$C94B8CFE-E3FD-4BAF-A941-2866DBB566FE net.pipe://942F095D82 /TelemetrySession:{"TelemetryLevel":"all","IsOptedIn":false,"HostName":"Default","AppInsightsInstrumentationKey":null,"AsimovInstrumentationKey":null,"CollectorApiKey":"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255","AppId":1010,"UserId":"b34ecaa6-bb17-46f9-ae2f-ef3de4433574","Id":"50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529","ProcessStartTime":133892317379595048,"SkuName":null,"VSExeVersion":null,"BucketFiltersToEnableWatsonForFaults":[],"BucketFiltersToAddDumpsToFaults":[]}System.Diagnostics.Process (Microsoft.VisualStudio.Code.ServiceController)
17.76
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2604
0
False
2025-04-15 23:02:18Z
1005
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
65142784
65142784
65142784
65142784
0
0
451661820
451661820
2.844293E+11
961458200
False
Normal
889684000
889684000
16383
200
System.Diagnostics.ProcessThreadCollection
431
2.843109E+11
843067400
False
302284800
302284800
System.Diagnostics.ProcessModule (Microsoft.VisualStudio.Code.ServiceHost)
0
True
Microsoft.VisualStudio.Code.ServiceHost2025-04-15 00:00:03Z2025-04-15 00:00:17Z2025-04-15 00:00:14Z
28
Microsoft.VisualStudio.Code.ServiceHost
200
269
2.79362E+11
148897800
38535170
0
/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicehost.linux-arm64/Microsoft.VisualStudio.Code.ServiceHost/home/vscode/.vscode-server/extensions/ms-dotnettools.csdevkit-1.18.23-linux-arm64/components/vs-green-server/platforms/linux-arm64/node_modules/@microsoft/visualstudio-code-servicehost.linux-arm64/Microsoft.VisualStudio.Code.ServiceHost dotnet$C94B8CFE-E3FD-4BAF-A941-2866DBB566FE net.pipe://942F095D82 /TelemetrySession:{"TelemetryLevel":"all","IsOptedIn":false,"HostName":"Default","AppInsightsInstrumentationKey":null,"AsimovInstrumentationKey":null,"CollectorApiKey":"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255","AppId":1010,"UserId":"b34ecaa6-bb17-46f9-ae2f-ef3de4433574","Id":"50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529","ProcessStartTime":133892317379595048,"SkuName":null,"VSExeVersion":null,"BucketFiltersToEnableWatsonForFaults":[],"BucketFiltersToAddDumpsToFaults":[]}System.Diagnostics.Process (Microsoft.VisualStudio.Code.ServiceController)
4.41
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2596
0
False
2025-04-15 23:02:18Z
1008
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
38535170
38535170
38535170
38535170
0
0
229183490
229183490
2.793875E+11
214638600
False
Normal
270106620
270106620
16383
200
System.Diagnostics.ProcessThreadCollection
269
2.79362E+11
189141000
False
148897800
148897800
System.Diagnostics.ProcessModule (Microsoft.VisualStudio.Code.ServiceHost)
0
True
Microsoft.VisualStudio.Code.ServiceHost2025-04-15 00:00:00Z2025-04-15 00:00:04Z2025-04-15 00:00:03Z
29
node
156
20
777449500
32342016
6291456
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/home/vscode/.vscode-server/bin/4949701c880d4bdb949e3c0e6b400288da7f474b/node /tmp/vscode-remote-containers-server-0e2b6b3c-0c56-41f9-b069-cd239efe0124.jsSystem.Diagnostics.Process (sh)
0.04
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2640
0
False
2025-04-15 23:02:16Z
199
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
6291456
6291456
6291456
6291456
0
0
41734144
41734144
777707500
777707500
False
Normal
84496380
84496380
16383
156
System.Diagnostics.ProcessThreadCollection
20
777449500
777449500
False
32342016
32342016
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
30
node
200
31
5.4083707E+09
49983490
75759620
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/out/server-main.js --log debug --force-disable-user-env --server-data-dir /home/vscode/.vscode-server --use-host-proxy --telemetry-level all --accept-server-license-terms --host 127.0.0.1 --port 0 --connection-token-file /home/vscode/.vscode-server/data/Machine/.connection-token-4949701c880d4bdb949e3c0e6b400288da7f474b --extensions-download-dir /home/vscode/.vscode-server/extensionsCache --start-server --disable-websocket-compression --skip-requirements-checkSystem.Diagnostics.Process (sh)
14.99
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2800
0
False
2025-04-15 23:02:16Z
210
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
75759620
75759620
75759620
75759620
0
0
183754750
183754750
5.4624297E+09
1.1674624E+09
False
Normal
166752260
166752260
16383
200
System.Diagnostics.ProcessThreadCollection
31
5.4083707E+09
1.1134034E+09
False
49983490
49983490
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:06Z2025-04-15 00:00:14Z2025-04-15 00:00:08Z
31
node
389
19
756224000
37634050
18219008
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node
0.19
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2476
0
False
2025-04-15 23:02:16Z
389
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
18219008
18219008
18219008
18219008
0
0
57806850
57806850
823595000
823595000
False
Normal
65728510
65728510
16383
389
System.Diagnostics.ProcessThreadCollection
19
756224000
756224000
False
37634050
37634050
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
32
node
411
19
750473200
46002176
4849664
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node
0.37
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2632
0
False
2025-04-15 23:02:16Z
411
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
4849664
4849664
4849664
4849664
0
0
51937280
51937280
816418800
816418800
False
Normal
61358080
61358080
16383
411
System.Diagnostics.ProcessThreadCollection
19
750473200
750473200
False
46002176
46002176
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
33
node
200
24
5.362086E+09
95784960
14286848
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/out/bootstrap-fork --type=fileWatcherSystem.Diagnostics.Process (node)
10.06
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2688
0
False
2025-04-15 23:02:16Z
433
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
14286848
14286848
14286848
14286848
0
0
114745340
114745340
5.428916E+09
1.1339489E+09
False
Normal
167886850
167886850
16383
200
System.Diagnostics.ProcessThreadCollection
24
5.362086E+09
1.0671186E+09
False
95784960
95784960
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:02Z2025-04-15 00:00:10Z2025-04-15 00:00:07Z
34
node
200
111
3.0831989E+10
522981380
369754100
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node --dns-result-order=ipv4first /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/out/bootstrap-fork --type=extensionHost --transformURIs --useHostProxy=trueSystem.Diagnostics.Process (node)
16.61
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2552
0
False
2025-04-15 23:02:16Z
570
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
369754100
369754100
369754100
369754100
0
0
978247700
978247700
3.0832247E+10
767475700
False
Normal
1.00286874E+09
1.00286874E+09
16383
200
System.Diagnostics.ProcessThreadCollection
111
3.0831989E+10
767217660
False
522981380
522981380
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:02Z2025-04-15 00:00:16Z2025-04-15 00:00:13Z
35
node
200
32
747794400
39628800
8650752
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/extensions/json-language-features/server/dist/node/jsonServerMain --node-ipc --clientProcessId=570System.Diagnostics.Process (node)
0.08
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2540
0
False
2025-04-15 23:02:17Z
755
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
8650752
8650752
8650752
8650752
0
0
53026816
53026816
814288900
814288900
False
Normal
56803330
56803330
16383
200
System.Diagnostics.ProcessThreadCollection
32
747794400
747794400
False
39628800
39628800
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
36
node
200
38
744353800
34283520
6160384
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /home/vscode/.vscode-server/extensions/dbaeumer.vscode-eslint-3.0.10/server/out/eslintServer.js --node-ipc --clientProcessId=570System.Diagnostics.Process (node)
0.06
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2840
0
False
2025-04-15 23:02:19Z
1068
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
6160384
6160384
6160384
6160384
0
0
43958270
43958270
811462660
811462660
False
Normal
51916800
51916800
16383
200
System.Diagnostics.ProcessThreadCollection
38
744353800
744353800
False
34283520
34283520
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
37
node
200
24
5.0959196E+09
51376130
393216
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/out/bootstrap-fork --type=ptyHost --logsPath /home/vscode/.vscode-server/data/logs/20250415T230216System.Diagnostics.Process (node)
0.24
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2824
0
False
2025-04-15 23:02:55Z
3157
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
393216
393216
393216
393216
0
0
63815680
63815680
5.1064136E+09
811446300
False
Normal
114499580
114499580
16383
200
System.Diagnostics.ProcessThreadCollection
24
5.0959196E+09
800952300
False
51376130
51376130
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
38
node
200
63
5.973291E+09
305721340
655360
0
/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node/vscode/vscode-server/bin/linux-arm64/4949701c880d4bdb949e3c0e6b400288da7f474b/node /home/vscode/.vscode-server/extensions/ms-python.vscode-pylance-2025.4.1/dist/server.bundle.js --cancellationReceive=file:40b98c2cfbb9c8a6032f1a7b3640ed7c0b34a30faf --node-ipc --clientProcessId=570System.Diagnostics.Process (node)
4.82
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2956
0
False
2025-04-15 23:02:55Z
3403
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
655360
655360
655360
655360
0
0
541626400
541626400
6.0925624E+09
1.7975951E+09
False
Normal
443871230
443871230
16383
200
System.Diagnostics.ProcessThreadCollection
63
5.973291E+09
1.6783237E+09
False
305721340
305721340
System.Diagnostics.ProcessModule (node)
0
True
node2025-04-15 00:00:01Z2025-04-15 00:00:04Z2025-04-15 00:00:03Z
39
pet
200
31
1.9245588E+09
3719168
0
0
/home/vscode/.vscode-server/extensions/ms-python.python-2025.4.0-linux-arm64/python-env-tools/bin/pet/home/vscode/.vscode-server/extensions/ms-python.python-2025.4.0-linux-arm64/python-env-tools/bin/pet serverSystem.Diagnostics.Process (node)
0.09
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2968
0
False
2025-04-15 23:02:55Z
3022
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
3850240
3850240
2.0224369E+09
2.0224369E+09
False
Normal
43958270
43958270
16383
200
System.Diagnostics.ProcessThreadCollection
31
1.9245588E+09
1.9245588E+09
False
3719168
3719168
System.Diagnostics.ProcessModule (pet)
0
True
pet2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
40
pwsh
3400
246
2.796653E+11
186535940
131072
0
/usr/share/powershell/pwsh/usr/bin/pwsh -NoProfile -EncodedCommand SQBtAHAAbwByAHQALQBNAG8AZAB1AGwAZQAgACcALwBoAG8AbQBlAC8AdgBzAGMAbwBkAGUALwAuAHYAcwBjAG8AZABlAC0AcwBlAHIAdgBlAHIALwBlAHgAdABlAG4AcwBpAG8AbgBzAC8AbQBzAC0AdgBzAGMAbwBkAGUALgBwAG8AdwBlAHIAcwBoAGUAbABsAC0AMgAwADIANQAuADAALgAwAC8AbQBvAGQAdQBsAGUAcwAvAFAAbwB3AGUAcgBTAGgAZQBsAGwARQBkAGkAdABvAHIAUwBlAHIAdgBpAGMAZQBzAC8AUABvAHcAZQByAFMAaABlAGwAbABFAGQAaQB0AG8AcgBTAGUAcgB2AGkAYwBlAHMALgBwAHMAZAAxACcAOwAgAFMAdABhAHIAdAAtAEUAZABpAHQAbwByAFMAZQByAHYAaQBjAGUAcwAgAC0ASABvAHMAdABOAGEAbQBlACAAJwBWAGkAcwB1AGEAbAAgAFMAdAB1AGQAaQBvACAAQwBvAGQAZQAgAEgAbwBzAHQAJwAgAC0ASABvAHMAdABQAHIAbwBmAGkAbABlAEkAZAAgACcATQBpAGMAcgBvAHMAbwBmAHQALgBWAFMAQwBvAGQAZQAnACAALQBIAG8AcwB0AFYAZQByAHMAaQBvAG4AIAAnADIAMAAyADUALgAwAC4AMAAnACAALQBCAHUAbgBkAGwAZQBkAE0AbwBkAHUAbABlAHMAUABhAHQAaAAgACcALwBoAG8AbQBlAC8AdgBzAGMAbwBkAGUALwAuAHYAcwBjAG8AZABlAC0AcwBlAHIAdgBlAHIALwBlAHgAdABlAG4AcwBpAG8AbgBzAC8AbQBzAC0AdgBzAGMAbwBkAGUALgBwAG8AdwBlAHIAcwBoAGUAbABsAC0AMgAwADIANQAuADAALgAwAC8AbQBvAGQAdQBsAGUAcwAnACAALQBFAG4AYQBiAGwAZQBDAG8AbgBzAG8AbABlAFIAZQBwAGwAIAAtAFMAdABhAHIAdAB1AHAAQgBhAG4AbgBlAHIAIAAiAFAAbwB3AGUAcgBTAGgAZQBsAGwAIABFAHgAdABlAG4AcwBpAG8AbgAgAHYAMgAwADIANQAuADAALgAwAAoAQwBvAHAAeQByAGkAZwBoAHQAIAAoAGMAKQAgAE0AaQBjAHIAbwBzAG8AZgB0ACAAQwBvAHIAcABvAHIAYQB0AGkAbwBuAC4ACgAKAGgAdAB0AHAAcwA6AC8ALwBhAGsAYQAuAG0AcwAvAHYAcwBjAG8AZABlAC0AcABvAHcAZQByAHMAaABlAGwAbAAKAFQAeQBwAGUAIAAnAGgAZQBsAHAAJwAgAHQAbwAgAGcAZQB0ACAAaABlAGwAcAAuAAoAIgAgAC0ATABvAGcATABlAHYAZQBsACAAJwBXAGEAcgBuAGkAbgBnACcAIAAtAEwAbwBnAFAAYQB0AGgAIAAnAC8AaABvAG0AZQAvAHYAcwBjAG8AZABlAC8ALgB2AHMAYwBvAGQAZQAtAHMAZQByAHYAZQByAC8AZABhAHQAYQAvAGwAbwBnAHMALwAyADAAMgA1ADAANAAxADUAVAAyADMAMAAyADEANgAvAGUAeAB0AGgAbwBzAHQAMQAvAG0AcwAtAHYAcwBjAG8AZABlAC4AcABvAHcAZQByAHMAaABlAGwAbAAnACAALQBTAGUAcwBzAGkAbwBuAEQAZQB0AGEAaQBsAHMAUABhAHQAaAAgACcALwBoAG8AbQBlAC8AdgBzAGMAbwBkAGUALwAuAHYAcwBjAG8AZABlAC0AcwBlAHIAdgBlAHIALwBkAGEAdABhAC8AVQBzAGUAcgAvAGcAbABvAGIAYQBsAFMAdABvAHIAYQBnAGUALwBtAHMALQB2AHMAYwBvAGQAZQAuAHAAbwB3AGUAcgBzAGgAZQBsAGwALwBzAGUAcwBzAGkAbwBuAHMALwBQAFMARQBTAC0AVgBTAEMAbwBkAGUALQB1AG4AZABlAGYAaQBuAGUAZAAtADcAMwA2ADgAMAAxAC4AagBzAG8AbgAnACAALQBGAGUAYQB0AHUAcgBlAEYAbABhAGcAcwAgAEAAKAApACAASystem.Diagnostics.Process (node)
1.93
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
2936
0
False
2025-04-15 23:02:55Z
3400
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
188764160
188764160
2.7969166E+11
518799360
False
Normal
259497980
259497980
16383
3400
System.Diagnostics.ProcessThreadCollection
246
2.796653E+11
492429300
False
186535940
186535940
System.Diagnostics.ProcessModule (pwsh)
0
True
pwsh2025-04-15 00:00:00Z2025-04-15 00:00:01Z2025-04-15 00:00:01Z
41
sh
1
<null>
2375680
1138688
0
0
0.01
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3068
0
False
2025-04-15 23:02:15Z
1
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1138688
1138688
2375680
2375680
False
Normal
360448
360448
16383
1
System.Diagnostics.ProcessThreadCollection
<null>
2375680
2375680
False
1138688
1138688
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
42
sh
21
<null>
2375680
1323008
0
0
/bin/sh -c echo "New container started. Keep-alive process started." ; export VSCODE_REMOTE_CONTAINERS_SESSION=50a29242-2678-4d3e-af46-94b4ad9a6f961744758129529 ; /bin/sh
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3216
0
False
2025-04-15 23:02:15Z
21
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1323008
1323008
2375680
2375680
False
Normal
360448
360448
16383
21
System.Diagnostics.ProcessThreadCollection
<null>
2375680
2375680
False
1323008
1323008
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
43
sh
27
3
2375680
1323008
0
0
/usr/bin/dash/bin/sh
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3196
0
False
2025-04-15 23:02:15Z
27
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1323008
1323008
2375680
2375680
False
Normal
360448
360448
16383
27
System.Diagnostics.ProcessThreadCollection
3
2375680
2375680
False
1323008
1323008
System.Diagnostics.ProcessModule (dash)
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
44
sh
21
<null>
2375680
1384448
0
0
/bin/shSystem.Diagnostics.Process (sh)
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3264
0
False
2025-04-15 23:02:15Z
28
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1384448
1384448
2375680
2375680
False
Normal
360448
360448
16383
21
System.Diagnostics.ProcessThreadCollection
<null>
2375680
2375680
False
1384448
1384448
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
45
sh
69
<null>
2375680
1331200
0
0
/bin/sh
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3156
0
False
2025-04-15 23:02:15Z
69
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1331200
1331200
2375680
2375680
False
Normal
360448
360448
16383
69
System.Diagnostics.ProcessThreadCollection
<null>
2375680
2375680
False
1331200
1331200
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
46
sh
156
3
2375680
1331200
131072
0
/usr/bin/dash/bin/sh
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3152
0
False
2025-04-15 23:02:16Z
156
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
131072
131072
131072
131072
0
0
1462272
1462272
2375680
2375680
False
Normal
360448
360448
16383
156
System.Diagnostics.ProcessThreadCollection
3
2375680
2375680
False
1331200
1331200
System.Diagnostics.ProcessModule (dash)
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
47
sh
200
4
2375680
1335296
0
0
/usr/bin/dashsh /home/vscode/.vscode-server/bin/4949701c880d4bdb949e3c0e6b400288da7f474b/bin/code-server --log debug --force-disable-user-env --server-data-dir /home/vscode/.vscode-server --use-host-proxy --telemetry-level all --accept-server-license-terms --host 127.0.0.1 --port 0 --connection-token-file /home/vscode/.vscode-server/data/Machine/.connection-token-4949701c880d4bdb949e3c0e6b400288da7f474b --extensions-download-dir /home/vscode/.vscode-server/extensionsCache --start-server --disable-websocket-compression --skip-requirements-check
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3072
0
False
2025-04-15 23:02:16Z
200
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1335296
1335296
2375680
2375680
False
Normal
360448
360448
16383
200
System.Diagnostics.ProcessThreadCollection
4
2375680
2375680
False
1335296
1335296
System.Diagnostics.ProcessModule (dash)
0
True
sh2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
48
sleep
1
<null>
2273280
1114112
0
0
sleep 1System.Diagnostics.Process (sh)
0
ProcessMicrosoft.Win32.SafeHandles.SafeProcessHandle
3328
0
False
2025-04-15 23:04:09Z
7747
.
9.223372E+18
0
System.Diagnostics.ProcessModuleCollection
0
0
0
0
0
0
0
0
1114112
1114112
2273280
2273280
False
Normal
352256
352256
16383
1
System.Diagnostics.ProcessThreadCollection
<null>
2273280
2273280
False
1114112
1114112
0
True
sleep2025-04-15 00:00:00Z2025-04-15 00:00:00Z2025-04-15 00:00:00Z
Page1