7 references to Error
Templates.Blazor.WebAssembly.Tests (7)
src\ProjectTemplates\Shared\ProcessResult.cs (1)
15
Error = process.
Error
;
src\ProjectTemplates\Shared\Project.cs (3)
137
if (errorOnRestoreError && (restoreExecution.Output.Contains("Restore failed.") || restoreExecution.
Error
.Contains("Restore failed.")))
163
if (execution.Output.Contains(": warning") || execution.
Error
.Contains(": warning"))
186
if (errorOnBuildWarning && (execution.Output.Contains(": warning") || execution.
Error
.Contains(": warning")))
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
138
if (!proc.
Error
.Contains("No templates or subcommands found matching:"))
src\Shared\Process\ProcessEx.cs (2)
202
return $"Process exited with code {_process.ExitCode}\nStdErr: {
Error
}\nStdOut: {Output}";
224
Assert.Fail($"Process exited with code {_process.ExitCode}\nStdErr: {
Error
}\nStdOut: {Output}");