22 writes to Value
aspire (12)
Commands\RenderCommand.cs (12)
498new() { Key = "Endpoint", Value = "https://myapp.azurecontainerapps.io", EnableMarkdown = false }, 499new() { Key = "Resource Group", Value = "rg-myapp-dev", EnableMarkdown = false }, 543new() { Key = "Endpoint", Value = "Application deployed to [https://myapp.azurecontainerapps.io](https://myapp.azurecontainerapps.io)", EnableMarkdown = true }, 544new() { Key = "Dashboard", Value = "View resources at [Azure Portal](https://portal.azure.com/#view/resource/123)", EnableMarkdown = true }, 545new() { Key = "API Docs", Value = "See the **API reference** at [docs](https://learn.microsoft.com/aspire) for more info", EnableMarkdown = true }, 546new() { Key = "Connection String", Value = "`Server=tcp:myserver.database.windows.net;Database=mydb`", EnableMarkdown = true }, 547new() { Key = "Region", Value = "East US 2", EnableMarkdown = false }, 548new() { Key = "Resource Group", Value = "rg-myapp-prod", EnableMarkdown = false }, 549new() { Key = "Next Steps", Value = "Run `aspire publish --env staging` to deploy to **staging**, or visit [the docs](https://learn.microsoft.com/aspire/deployment) for more options.", EnableMarkdown = true }, 797new() { Key = "Endpoint", Value = "Application deployed to [https://myapp.azurecontainerapps.io](https://myapp.azurecontainerapps.io)", EnableMarkdown = true }, 798new() { Key = "Region", Value = "East US 2", EnableMarkdown = false }, 799new() { Key = "Next Steps", Value = "Run `aspire publish --env staging` to deploy to **staging**.", EnableMarkdown = true },
Aspire.Cli.Tests (10)
Utils\ConsoleActivityLoggerTests.cs (10)
73new() { Key = "☁️ Target", Value = "Azure", EnableMarkdown = false }, 74new() { Key = "📦 Resource Group", Value = "VNetTest5 [link](https://portal.azure.com/#/resource/subscriptions/sub-id/resourceGroups/VNetTest5/overview)", EnableMarkdown = true }, 75new() { Key = "🔑 Subscription", Value = "sub-id", EnableMarkdown = false }, 76new() { Key = "🌐 Location", Value = "eastus", EnableMarkdown = false }, 103new() { Key = "📦 Resource Group", Value = $"VNetTest5 [link]({portalUrl})", EnableMarkdown = true }, 124new() { Key = "📦 Resource Group", Value = $"VNetTest5 [link]({portalUrl})", EnableMarkdown = true }, 149new() { Key = "☁️ Target", Value = "Azure", EnableMarkdown = false }, 150new() { Key = "🌐 Location", Value = "eastus", EnableMarkdown = false }, 171new() { Key = "Key [with] brackets", Value = "plain value", EnableMarkdown = false }, 193new() { Key = "Key [with] brackets", Value = "Value [bold]not bold[/]", EnableMarkdown = false },
4 references to Value
aspire (4)
Utils\ConsoleActivityLogger.cs (4)
373? MarkdownToSpectreConverter.ConvertToSpectre(item.Value) 374: item.Value.EscapeMarkup(); 382? MarkdownLinkConverter.ConvertLinksToPlainText(item.Value).EscapeMarkup() 383: item.Value.EscapeMarkup();