7 writes to SourcePath
Aspire.Hosting (2)
ApplicationModel\ContainerFileSystemCallbackAnnotation.cs (2)
161SourcePath = file, 188SourcePath = fullPath,
Aspire.Hosting.Azure.EventHubs (1)
AzureEventHubsExtensions.cs (1)
280SourcePath = customConfigFile.SourcePath,
Aspire.Hosting.Azure.ServiceBus (1)
AzureServiceBusExtensions.cs (1)
418SourcePath = customConfigFile.SourcePath,
Aspire.Hosting.Docker.Tests (1)
DockerComposePublisherTests.cs (1)
53SourcePath = "./hello.sh",
Aspire.Hosting.Milvus (1)
MilvusBuilderExtensions.cs (1)
209SourcePath = configurationFilePath,
Aspire.Hosting.Tests (1)
DistributedApplicationTests.cs (1)
479SourcePath = "/tmp/test2.sh",
10 references to SourcePath
Aspire.Hosting (3)
ApplicationModel\ContainerFileSystemCallbackAnnotation.cs (1)
57/// The contents of the file. Setting Contents is mutually exclusive with <see cref="SourcePath"/>. If both are set, an exception will be thrown.
Dcp\Model\Container.cs (2)
351entry.Source = file.SourcePath; 354if (file.Contents is not null && file.SourcePath is not null)
Aspire.Hosting.Azure.Tests (2)
AzureEventHubsExtensionsTests.cs (1)
491Assert.Equal(configJsonPath, configFile.SourcePath);
AzureServiceBusExtensionsTests.cs (1)
587Assert.Equal(configJsonPath, configFile.SourcePath);
Aspire.Hosting.Docker (4)
DockerComposePublishingContext.cs (4)
162if (!string.IsNullOrEmpty(file.SourcePath)) 167sourcePath = Path.Combine(OutputPath, composeService.Name, Path.GetFileName(file.SourcePath)); 170File.Copy(file.SourcePath, sourcePath); 177logger.FailedToCopyFile(file.SourcePath, OutputPath);
Aspire.Hosting.Keycloak.Tests (1)
KeycloakPublicApiTests.cs (1)
200Assert.Equal(filePath, realmFile.SourcePath);