30 writes to Message
aspire (30)
JsonSourceGenerationContext.EnvironmentCheckResult.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Utils.EnvironmentChecker.EnvironmentCheckResult(){ Category = (string)args[0], Name = (string)args[1], Status = (global::Aspire.Cli.Utils.EnvironmentChecker.EnvironmentCheckStatus)args[2], Message = (string)args[3], Fix = (string)args[4], Link = (string)args[5], Details = (string)args[6] },
Utils\EnvironmentChecker\ContainerRuntimeCheck.cs (16)
65Message = "No container runtime detected", 78Message = "Failed to check container runtime", 108Message = $"{runtime} not found" 129Message = $"{runtime} check timed out", 160Message = $"{runtimeDescription} is installed but not running", 176Message = $"{runtime} is installed but the daemon is not running", 187Message = $"{runtime} not found", 212Message = $"{runtime} client version {clientVersion} is below the minimum required version {minVersionString}", 230Message = $"{runtime} server version {serverVersion} is below the minimum required version {minVersionString}", 256Message = $"{runtime} installed but daemon not reachable", 277Message = $"{runtime} daemon not responding", 291Message = $"{runtimeDescription} is installed but not running", 312Message = $"Docker Engine detected{versionSuffix}. Aspire's container tunnel is required to allow containers to reach applications running on the host", 323Message = $"Docker Engine detected and running{versionSuffix} with container tunnel enabled" 332Message = $"{runtimeName} detected and running{versionSuffix}" 343Message = $"Failed to check {runtime}"
Utils\EnvironmentChecker\DevCertsCheck.cs (8)
32Message = "No HTTPS development certificate found", 64Message = $"Multiple HTTPS development certificates found ({devCertificates.Count} certificates), but none are trusted", 77Message = $"Multiple HTTPS development certificates found ({devCertificates.Count} certificates)", 93Message = $"HTTPS development certificate is trusted ({trustedCerts.Count} trusted certificates found)", 107Message = "HTTPS development certificate is not trusted", 121Message = "HTTPS development certificate is trusted" 134Message = $"HTTPS development certificate has an older version ({versions})", 151Message = "Unable to check HTTPS development certificate",
Utils\EnvironmentChecker\DotNetSdkCheck.cs (3)
36Message = highestVersion is null 51Message = $".NET {highestVersion} installed ({architecture})" 62Message = "Error checking .NET SDK",
Utils\EnvironmentChecker\WslEnvironmentCheck.cs (2)
44Message = "WSL1 detected - limited container support", 56Message = "WSL2 environment detected",
2 references to Message
aspire (2)
Commands\DoctorCommand.cs (1)
127_ansiConsole.MarkupLine($" [{color}]{icon}[/] {result.Message.EscapeMarkup()}");
JsonSourceGenerationContext.EnvironmentCheckResult.g.cs (1)
122Getter = static obj => ((global::Aspire.Cli.Utils.EnvironmentChecker.EnvironmentCheckResult)obj).Message,