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
[wasm][host] Track change in forwardConsole parameter to forwardConso…
…leToWS
  • Loading branch information
radical committed Sep 9, 2022
commit e2093d9052e0f7f5408011586849a8faa072b28e
2 changes: 1 addition & 1 deletion src/mono/wasm/host/BrowserHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private async Task RunAsync(ILoggerFactory loggerFactory, CancellationToken toke
var runArgsJson = new RunArgumentsJson(applicationArguments: _args.AppArgs,
runtimeArguments: _args.CommonConfig.RuntimeArguments,
environmentVariables: envVars,
forwardConsole: _args.ForwardConsoleOutput ?? false,
forwardConsoleToWS: _args.ForwardConsoleOutput ?? false,
debugging: _args.CommonConfig.Debugging);
runArgsJson.Save(Path.Combine(_args.CommonConfig.AppPath, "runArgs.json"));

Expand Down
2 changes: 1 addition & 1 deletion src/mono/wasm/host/RunArgumentsJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal sealed record RunArgumentsJson(
string[] applicationArguments,
string[]? runtimeArguments = null,
IDictionary<string, string>? environmentVariables = null,
bool forwardConsole = false,
bool forwardConsoleToWS = false,
bool debugging = false
)
{
Expand Down