Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand All @@ -29,12 +29,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '18.x'

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.301
dotnet-version: '8.x'

- name: Install NPM packages
run: npm install
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "external/debugger-libs"]
path = external/debugger-libs
url = https://github.com/mono/debugger-libs.git
[submodule "external/nrefactory"]
path = external/nrefactory
url = https://github.com/xamarin/NRefactory.git
23 changes: 19 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
{
"version": "0.1.0",
"version": "2.0.0",
"command": "npm",
"isShellCommand": true,
"isBackground": true,
"showOutput": "always",
"args": [
"run", "watch"
],
"problemMatcher": "$tsc-watch"
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "npm",
"type": "shell",
"command": "npm",
"args": [
"run",
"watch"
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ debug: $MONO_DEBUG_DEBUG
@echo "build finished"

$MONO_DEBUG_RELEASE:
msbuild /v:minimal /restore /p:Configuration=Release src/csharp/mono-debug.csproj
dotnet build -c Release src/csharp/mono-debug.csproj

$MONO_DEBUG_DEBUG:
msbuild /v:minimal /restore /p:Configuration=Debug src/csharp/mono-debug.csproj
dotnet build -c Debug src/csharp/mono-debug.csproj

tests:
dotnet build /nologo testdata/simple
Expand Down
7 changes: 7 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<configuration>
<packageSources>
<clear />
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
</packageSources>
</configuration>
2 changes: 1 addition & 1 deletion external/debugger-libs
Submodule debugger-libs updated 75 files
+1 −1 CorApi/CorApi.csproj
+1 −1 CorApi2/CorApi2.csproj
+7 −0 Directory.Build.props
+14 −112 Mono.Debugger.Soft/Mono.Debugger.Soft.csproj
+55 −5 Mono.Debugger.Soft/Mono.Debugger.Soft/AssemblyMirror.cs
+274 −107 Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
+19 −0 Mono.Debugger.Soft/Mono.Debugger.Soft/EncEvents.cs
+15 −2 Mono.Debugger.Soft/Mono.Debugger.Soft/EventRequest.cs
+4 −2 Mono.Debugger.Soft/Mono.Debugger.Soft/EventType.cs
+5 −2 Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs
+71 −1 Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs
+10 −0 Mono.Debugger.Soft/Mono.Debugger.Soft/ModuleMirror.cs
+9 −5 Mono.Debugger.Soft/Mono.Debugger.Soft/ObjectMirror.cs
+6 −1 Mono.Debugger.Soft/Mono.Debugger.Soft/StackFrame.cs
+1 −1 Mono.Debugger.Soft/Mono.Debugger.Soft/StepEventRequest.cs
+10 −0 Mono.Debugger.Soft/Mono.Debugger.Soft/StructMirror.cs
+6 −4 Mono.Debugger.Soft/Mono.Debugger.Soft/ThreadMirror.cs
+62 −20 Mono.Debugger.Soft/Mono.Debugger.Soft/TypeMirror.cs
+20 −3 Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs
+59 −46 Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachineManager.cs
+37 −0 Mono.Debugging.Soft/ArrayAdaptor.cs
+0 −29 Mono.Debugging.Soft/AssemblyInfo.cs
+299 −0 Mono.Debugging.Soft/DebugSymbolsManager.cs
+19 −72 Mono.Debugging.Soft/Mono.Debugging.Soft.csproj
+75 −1 Mono.Debugging.Soft/PortablePdbData.cs
+10 −3 Mono.Debugging.Soft/SoftDebuggerAdaptor.cs
+85 −8 Mono.Debugging.Soft/SoftDebuggerBacktrace.cs
+560 −225 Mono.Debugging.Soft/SoftDebuggerSession.cs
+2 −0 Mono.Debugging.Soft/SoftDebuggerStartInfo.cs
+223 −0 Mono.Debugging.Soft/Subprocess.cs
+7 −0 Mono.Debugging.Soft/nuget.config
+2 −2 Mono.Debugging.Win32/Mono.Debugging.Win32.csproj
+133 −0 Mono.Debugging/Mono.Debugging.Client/Assembly.cs
+11 −0 Mono.Debugging/Mono.Debugging.Client/AssemblyEventArgs.cs
+7 −0 Mono.Debugging/Mono.Debugging.Client/Backtrace.cs
+3 −1 Mono.Debugging/Mono.Debugging.Client/BreakEvent.cs
+2 −0 Mono.Debugging/Mono.Debugging.Client/BreakEventInfo.cs
+6 −4 Mono.Debugging/Mono.Debugging.Client/Breakpoint.cs
+110 −78 Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
+38 −1 Mono.Debugging/Mono.Debugging.Client/Catchpoint.cs
+184 −141 Mono.Debugging/Mono.Debugging.Client/DebuggerSession.cs
+24 −1 Mono.Debugging/Mono.Debugging.Client/DebuggerSessionOptions.cs
+23 −13 Mono.Debugging/Mono.Debugging.Client/DebuggerStatistics.cs
+50 −6 Mono.Debugging/Mono.Debugging.Client/FunctionBreakpoint.cs
+8 −0 Mono.Debugging/Mono.Debugging.Client/ObjectValue.cs
+20 −0 Mono.Debugging/Mono.Debugging.Client/OutputOptions.cs
+10 −2 Mono.Debugging/Mono.Debugging.Client/ProcessInfo.cs
+4 −2 Mono.Debugging/Mono.Debugging.Client/SourceLink.cs
+33 −8 Mono.Debugging/Mono.Debugging.Client/StackFrame.cs
+1 −1 Mono.Debugging/Mono.Debugging.Evaluation/AsyncEvaluationTracker.cs
+7 −12 Mono.Debugging/Mono.Debugging.Evaluation/BaseBacktrace.cs
+50 −609 Mono.Debugging/Mono.Debugging.Evaluation/LambdaBodyOutputVisitor.cs
+13 −14 Mono.Debugging/Mono.Debugging.Evaluation/NRefactoryExpressionEvaluator.cs
+364 −824 Mono.Debugging/Mono.Debugging.Evaluation/NRefactoryExpressionEvaluatorVisitor.cs
+34 −40 Mono.Debugging/Mono.Debugging.Evaluation/NRefactoryExpressionResolverVisitor.cs
+97 −67 Mono.Debugging/Mono.Debugging.Evaluation/NRefactoryExtensions.cs
+4 −1 Mono.Debugging/Mono.Debugging.Evaluation/RemoteFrameObject.cs
+11 −0 Mono.Debugging/Mono.Debugging.Evaluation/ValueReference.cs
+20 −142 Mono.Debugging/Mono.Debugging.csproj
+1 −0 NuGet.config
+1 −1 UnitTests/Mono.Debugging.Tests/Shared/AdvancedEvaluationTests.cs
+79 −58 UnitTests/Mono.Debugging.Tests/Shared/BreakpointsAndSteppingTests.cs
+1 −1 UnitTests/Mono.Debugging.Tests/Shared/CodeCompletionTests.cs
+17 −5 UnitTests/Mono.Debugging.Tests/Shared/DebugTests.cs
+2 −2 UnitTests/Mono.Debugging.Tests/Shared/DebuggerSessionTests.cs
+7 −3 UnitTests/Mono.Debugging.Tests/Shared/EvaluationTests.cs
+1 −1 UnitTests/Mono.Debugging.Tests/Shared/StackFrameTests.cs
+5 −5 UnitTests/MonoDevelop.Debugger.Tests.AppDomainClient/MonoDevelop.Debugger.Tests.AppDomainClient.csproj
+1 −1 UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLib/MonoDevelop.Debugger.Tests.NonUserCodeTestLib.csproj
+6 −0 UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLibCore/NuGet.config
+24 −0 UnitTests/MonoDevelop.Debugger.Tests.TestApp/BreakpointsAndStepping.cs
+11 −0 UnitTests/MonoDevelop.Debugger.Tests.TestApp/Logging.cs
+2 −1 UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
+2 −1 UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/MonoDevelop.Debugger.Tests.TestAppCore.csproj
+6 −0 UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/NuGet.config
1 change: 0 additions & 1 deletion external/nrefactory
Submodule nrefactory deleted from 60ac8e
Loading