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