9 writes to SourcePath
Aspire.Hosting (4)
ApplicationModel\ContainerFileSystemCallbackAnnotation.cs (4)
190SourcePath = file, 217SourcePath = fullPath, 344SourcePath = sourcePath, 378SourcePath = sourcePath,
Aspire.Hosting.Azure.EventHubs (1)
AzureEventHubsExtensions.cs (1)
324SourcePath = customConfigFile.SourcePath,
Aspire.Hosting.Azure.ServiceBus (1)
AzureServiceBusExtensions.cs (1)
474SourcePath = customConfigFile.SourcePath,
Aspire.Hosting.Docker.Tests (1)
DockerComposePublisherTests.cs (1)
56SourcePath = "./hello.sh",
Aspire.Hosting.Milvus (1)
MilvusBuilderExtensions.cs (1)
227SourcePath = configurationFilePath,
Aspire.Hosting.Tests (1)
DistributedApplicationTests.cs (1)
870SourcePath = "/tmp/test2.sh",
12 references to SourcePath
Aspire.Hosting (3)
ApplicationModel\ContainerFileSystemCallbackAnnotation.cs (1)
63/// 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)
399entry.Source = file.SourcePath; 403if (file.Contents is not null && file.SourcePath is not null)
Aspire.Hosting.Azure.Tests (2)
AzureEventHubsExtensionsTests.cs (1)
493Assert.Equal(configJsonPath, configFile.SourcePath);
AzureServiceBusExtensionsTests.cs (1)
590Assert.Equal(configJsonPath, configFile.SourcePath);
Aspire.Hosting.Containers.Tests (2)
ContainerFileSystemCallbackContextTests.cs (2)
30Assert.Null(file.SourcePath); 45Assert.Equal("/host/app.conf", file.SourcePath);
Aspire.Hosting.Docker (4)
DockerComposePublishingContext.cs (4)
190if (!string.IsNullOrEmpty(file.SourcePath)) 195sourcePath = Path.Combine(OutputPath, composeService.Name, Path.GetFileName(file.SourcePath)); 198File.Copy(file.SourcePath, sourcePath); 205logger.FailedToCopyFile(file.SourcePath, OutputPath);
Aspire.Hosting.Keycloak.Tests (1)
KeycloakPublicApiTests.cs (1)
195Assert.Equal(filePath, realmFile.SourcePath);