3 implementations of CompileBicepToArmAsync
Aspire.Hosting.Azure (1)
Provisioning\Internal\BicepCompiler.cs (1)
15
public async Task<string>
CompileBicepToArmAsync
(string bicepFilePath, CancellationToken cancellationToken = default)
Aspire.Hosting.Azure.Tests (2)
AzureBicepProvisionerTests.cs (1)
193
public Task<string>
CompileBicepToArmAsync
(string bicepFilePath, CancellationToken cancellationToken = default)
ProvisioningTestHelpers.cs (1)
273
public Task<string>
CompileBicepToArmAsync
(string bicepFilePath, CancellationToken cancellationToken = default)
2 references to CompileBicepToArmAsync
Aspire.Hosting.Azure (1)
Provisioning\Provisioners\BicepProvisioner.cs (1)
143
var armTemplateContents = await bicepCompiler.
CompileBicepToArmAsync
(path, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
ProvisioningContextTests.cs (1)
187
var result = await executor.
CompileBicepToArmAsync
("test.bicep");