22 writes to Fix
aspire (22)
Utils\EnvironmentChecker\ContainerRuntimeCheck.cs (12)
67Fix = "Install Docker Desktop: https://www.docker.com/products/docker-desktop or Podman: https://podman.io/getting-started/installation", 131Fix = GetContainerRuntimeStartupAdvice(runtime), 163Fix = GetContainerRuntimeStartupAdvice(runtime, isDockerDesktop), 179Fix = GetContainerRuntimeStartupAdvice(runtime), 190Fix = GetContainerRuntimeInstallationLink(runtime), 215Fix = GetContainerRuntimeUpgradeAdvice(runtime), 233Fix = GetContainerRuntimeUpgradeAdvice(runtime), 259Fix = GetContainerRuntimeStartupAdvice(runtime), 280Fix = GetContainerRuntimeStartupAdvice(runtime), 294Fix = GetContainerRuntimeStartupAdvice(runtime, isDockerDesktop), 313Fix = "Switch Docker Desktop to Linux containers mode (right-click Docker tray icon → 'Switch to Linux containers...')", 330Fix = "Set environment variable: ASPIRE_ENABLE_CONTAINER_TUNNEL=true",
Utils\EnvironmentChecker\DeprecatedAgentConfigCheck.cs (1)
69Fix = AgentCommandStrings.DeprecatedConfigFix
Utils\EnvironmentChecker\DeprecatedWorkloadCheck.cs (1)
80Fix = "Run: dotnet workload uninstall aspire",
Utils\EnvironmentChecker\DevCertsCheck.cs (6)
50Fix = "Run: dotnet dev-certs https --trust", 123Fix = "Run 'dotnet dev-certs https --clean' to remove all certificates, then run 'dotnet dev-certs https --trust' to create a new one.", 136Fix = "Run 'dotnet dev-certs https --clean' to remove all certificates, then run 'dotnet dev-certs https --trust' to create a new one.", 163Fix = "Run: dotnet dev-certs https --trust", 178Fix = $"Set SSL_CERT_DIR in your shell profile: export SSL_CERT_DIR=\"/etc/ssl/certs:{devCertsTrustPath}\"", 205Fix = "Run 'dotnet dev-certs https --clean' to remove all certificates, then run 'dotnet dev-certs https --trust' to create a new one.",
Utils\EnvironmentChecker\DotNetSdkCheck.cs (1)
39Fix = $"Download .NET SDK from: https://dotnet.microsoft.com/download/dotnet/{majorVersion}.0",
Utils\EnvironmentChecker\WslEnvironmentCheck.cs (1)
45Fix = "Upgrade to WSL2 for best experience: wsl --set-version <distro> 2",
2 references to Fix
aspire (2)
Commands\DoctorCommand.cs (2)
141if (!string.IsNullOrEmpty(result.Fix)) 143var fixLines = result.Fix.Split('\n', StringSplitOptions.RemoveEmptyEntries);