11 references to Error
Templates.Blazor.Tests (11)
BlazorWasmTemplateTest.cs (1)
207$"Couldn't find listening url:\n{string.Join(Environment.NewLine, buffer.Append(process.Error))}");
src\ProjectTemplates\Shared\ProcessResult.cs (1)
15Error = process.Error;
src\ProjectTemplates\Shared\Project.cs (3)
149if (errorOnRestoreError && (restoreExecution.Output.Contains("Restore failed.") || restoreExecution.Error.Contains("Restore failed."))) 175if (execution.Output.Contains(": warning") || execution.Error.Contains(": warning")) 198if (errorOnBuildWarning && (execution.Output.Contains(": warning") || execution.Error.Contains(": warning")))
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
139if (!proc.Error.Contains("No templates or subcommands found matching:"))
src\Shared\Process\ProcessEx.cs (2)
202return $"Process exited with code {_process.ExitCode}\nStdErr: {Error}\nStdOut: {Output}"; 224Assert.Fail($"Process exited with code {_process.ExitCode}\nStdErr: {Error}\nStdOut: {Output}");
WebWorkerTemplateE2ETest.cs (3)
132Assert.True(result.ExitCode == 0, $"Failed to create webworker template: {result.Output}\n{result.Error}"); 138Assert.True(restoreResult.ExitCode == 0, $"Failed to restore webworker library: {restoreResult.Output}\n{restoreResult.Error}"); 182Assert.True(result.ExitCode == 0, $"Failed to add WorkerLib reference: {result.Output}\n{result.Error}");