11 references to GetOutput
Aspire.Hosting.Azure.Tests (5)
AzureApplicationInsightsExtensionsTests.cs (1)
110
.WithLogAnalyticsWorkspace(env.
GetOutput
("AZURE_LOG_ANALYTICS_WORKSPACE_ID"));
AzureBicepResourceTests.cs (4)
135
Assert.Equal("https://myendpoint", bicepResource.
GetOutput
("resourceEndpoint").Value);
159
Assert.Throws<InvalidOperationException>(() => bicepResource.
GetOutput
("resourceEndpoint").Value);
188
.WithParameter("param5", b2.
GetOutput
("value1"))
189
.WithParameter("param6", () => b2.
GetOutput
("value2"));
BicepSample.AppHost (3)
Program.cs (3)
83
.WithEnvironment("bicepValue_test", bicep1.
GetOutput
("test"))
84
.WithEnvironment("bicepValue0", bicep1.
GetOutput
("val0"))
85
.WithEnvironment("bicepValue1", bicep1.
GetOutput
("val1"));
Pipelines.AppHost (3)
AppHost.cs (3)
58
var storageAccountName = await acaEnv.
GetOutput
("storagE_VOLUME_ACCOUNT_NAME").GetValueAsync();
242
var storageAccountName = await acaEnv.
GetOutput
("storagE_VOLUME_ACCOUNT_NAME").GetValueAsync();
262
var fileShareName = await acaEnv.
GetOutput
($"shareS_{i}_NAME").GetValueAsync();