Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Forgot some tasks
  • Loading branch information
WardenGnaw committed May 28, 2024
commit efd54d4181623a576f6bfef794a66a9c26dc3e96
8 changes: 4 additions & 4 deletions .github/workflows/Build-And-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
dotnet-version: 8.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1
uses: NuGet/setup-nuget@v2

- name: Build MIDebugEngine
run: |
Expand Down Expand Up @@ -64,10 +64,10 @@ jobs:
dotnet-version: 8.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1
uses: NuGet/setup-nuget@v2

- name: Build MIDebugEngine
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/SSHDebugPS/VsOutputWindowWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static void Write(string message, string pane = DefaultOutputPane)
}

// Output the text
outputPane.OutputString(message);
outputPane.OutputStringThreadSafe(message);
}
catch (Exception)
{
Expand Down