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)
15
Error = process.
Error
;
src\ProjectTemplates\Shared\Project.cs (3)
149
if (errorOnRestoreError && (restoreExecution.Output.Contains("Restore failed.") || restoreExecution.
Error
.Contains("Restore failed.")))
175
if (execution.Output.Contains(": warning") || execution.
Error
.Contains(": warning"))
198
if (errorOnBuildWarning && (execution.Output.Contains(": warning") || execution.
Error
.Contains(": warning")))
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
139
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}");
WebWorkerTemplateE2ETest.cs (3)
132
Assert.True(result.ExitCode == 0, $"Failed to create webworker template: {result.Output}\n{result.
Error
}");
138
Assert.True(restoreResult.ExitCode == 0, $"Failed to restore webworker library: {restoreResult.Output}\n{restoreResult.
Error
}");
182
Assert.True(result.ExitCode == 0, $"Failed to add WorkerLib reference: {result.Output}\n{result.
Error
}");