11 references to Output
Templates.Blazor.Tests (11)
src\ProjectTemplates\Shared\ProcessResult.cs (1)
14
Output = process.
Output
;
src\ProjectTemplates\Shared\Project.cs (4)
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")))
528
Assert.True(File.Exists(sourceFile), $"Log for '{ProjectName}' not found in '{sourceFile}'. Execution output: {result.
Output
}");
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (4)
122
if (!(proc.
Output
.Contains($" {templateName} ") || proc.
Output
.Contains($",{templateName}") || proc.
Output
.Contains($"{templateName},")))
124
throw new InvalidOperationException($"Couldn't find {templateName} as an option in {proc.
Output
}.");
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
}");