7 references to Error
Templates.Blazor.WebAssembly.Tests (7)
src\ProjectTemplates\Shared\ProcessResult.cs (1)
15Error = process.Error;
src\ProjectTemplates\Shared\Project.cs (3)
122if (errorOnRestoreError && (execution.Output.Contains("Restore failed.") || execution.Error.Contains("Restore failed."))) 145if (execution.Output.Contains(": warning") || execution.Error.Contains(": warning")) 168if (errorOnBuildWarning && (execution.Output.Contains(": warning") || execution.Error.Contains(": warning")))
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
137if (!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}");