14 references to Path
Aspire.Hosting.Azure (6)
AzureBicepResource.cs (2)
225var path = template.Path; 565File.Delete(Path);
AzureProvisioningResource.cs (1)
110_generatedBicep = File.ReadAllText(template.Path);
AzurePublishingContext.cs (2)
160File.Copy(file.Path, modulePath, true); 344File.Copy(file.Path, modulePath, true);
Provisioning\Provisioners\BicepProvisioner.cs (1)
144var path = template.Path;
Aspire.Hosting.Azure.Tests (8)
AzureBicepResourceTests.cs (8)
275Assert.Equal(bicepFilePath, templateFile.Path); 276Assert.True(File.Exists(templateFile.Path), $"The template file should exist at {templateFile.Path}"); 296Assert.Equal(bicepFilePath, templateFile.Path); 317Assert.StartsWith(outputDir, templateFile.Path); 318Assert.True(File.Exists(templateFile.Path), $"The template file should exist at {templateFile.Path}"); 319Assert.Equal(bicepContent, File.ReadAllText(templateFile.Path));