14 references to Path
Aspire.Hosting.Azure (6)
AzureBicepResource.cs (2)
234var path = template.Path; 514File.Delete(Path);
AzureProvisioningResource.cs (1)
110_generatedBicep = File.ReadAllText(template.Path);
AzurePublishingContext.cs (2)
191File.Copy(file.Path, modulePath, true); 445File.Copy(file.Path, modulePath, true);
Provisioning\Provisioners\BicepProvisioner.cs (1)
549var path = template.Path;
Aspire.Hosting.Azure.Tests (8)
AzureBicepResourceTests.cs (8)
274Assert.Equal(bicepFilePath, templateFile.Path); 275Assert.True(File.Exists(templateFile.Path), $"The template file should exist at {templateFile.Path}"); 295Assert.Equal(bicepFilePath, templateFile.Path); 316Assert.StartsWith(outputDir, templateFile.Path); 317Assert.True(File.Exists(templateFile.Path), $"The template file should exist at {templateFile.Path}"); 318Assert.Equal(bicepContent, File.ReadAllText(templateFile.Path));