8 references to GetOutput
Aspire.Hosting.Azure.Tests (5)
AzureApplicationInsightsExtensionsTests.cs (1)
110
.WithLogAnalyticsWorkspace(env.
GetOutput
("AZURE_LOG_ANALYTICS_WORKSPACE_ID"));
AzureBicepResourceTests.cs (4)
130
Assert.Equal("https://myendpoint", bicepResource.
GetOutput
("resourceEndpoint").Value);
154
Assert.Throws<InvalidOperationException>(() => bicepResource.
GetOutput
("resourceEndpoint").Value);
183
.WithParameter("param5", b2.
GetOutput
("value1"))
184
.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"));