8000 Add file-based program API for use by debugger by jjonescz · Pull Request #48905 · dotnet/sdk · GitHub
[go: up one dir, main page]

Skip to content

Add file-based program API for use by debugger #48905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 12, 2025
Merged
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
Fix typo
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
nagilson and Copilot authored May 12, 2025
commit aeb4bd64bb6b9fbe98d2f02f1078a820496073f1
2 changes: 1 addition & 1 deletion src/Cli/Microsoft.DotNet.Cli.Utils/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Command(Process? process, bool trimTrailingNewlines = false, IDicti
private readonly Process _process = process ?? throw new ArgumentNullException(nameof(process));

private readonly Dictionary<string, string?>? _customEnvironmentVariables =
// copy the dictionray to avoid mutating the original
// copy the dictionary to avoid mutating the original
customEnvironmentVariables == null ? null : new(customEnvironmentVariables);

private StreamForwarder? _stdOut;
Expand Down
0