9 references to Output
aspire (6)
NuGet\BundleNuGetPackageCache.cs (1)
165logger.LogError("NuGet search stderr: {Error}", ex.Output);
NuGet\BundleNuGetService.cs (4)
121_logger.LogError("Package restore stderr: {Error}", ex.Output); 122throw new InvalidOperationException($"Package restore failed: {ex.Output}", ex); 139_logger.LogError("Manifest creation stderr: {Error}", ex.Output); 140throw new InvalidOperationException($"Manifest creation failed: {ex.Output}", ex);
NuGet\NuGetClient.cs (1)
33/// <see cref="NuGetOperationException"/>, whose <see cref="NuGetOperationException.Output"/> is the text the helper
Aspire.Cli.Tests (3)
NuGet\NuGetClientTests.cs (3)
208var lines = exception.Output.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries); 912Assert.Contains(packageId, exception.Output, StringComparison.Ordinal); 913Assert.Contains("PackageSourceMapping", exception.Output, StringComparison.Ordinal);