1 override of Path
Aspire.Hosting (1)
Utils\FileSystemService.cs (1)
186public override string Path => _path;
24 references to Path
Aspire.Hosting (2)
Dcp\Locations.cs (1)
29_dcpSessionDir = _directoryService.TempDirectory.CreateTempSubdirectory("aspire-dcp").Path;
Pipelines\PipelineOutputService.cs (1)
33_tempDirectory = directoryService.TempDirectory.CreateTempSubdirectory("aspire-pipelines").Path;
Aspire.Hosting.Azure (2)
AzurePublishingContext.cs (1)
125var tempDirectory = fileSystemService.TempDirectory.CreateTempSubdirectory("aspire-bicep").Path;
Provisioning\Provisioners\BicepProvisioner.cs (1)
142var tempDirectory = fileSystemService.TempDirectory.CreateTempSubdirectory("aspire-bicep").Path;
Aspire.Hosting.Maui (2)
Utilities\MauiEnvironmentHelper.cs (2)
69var tempDirectory = fileSystemService.TempDirectory.CreateTempSubdirectory("aspire-maui-android-env").Path; 240var tempDirectory = fileSystemService.TempDirectory.CreateTempSubdirectory("aspire-maui-mlaunch-env").Path;
Aspire.Hosting.Tests (18)
FileSystemServiceTests.cs (18)
32Assert.NotNull(tempDir.Path); 33Assert.True(Directory.Exists(tempDir.Path)); 43Assert.NotNull(tempDir.Path); 44Assert.True(Directory.Exists(tempDir.Path)); 45Assert.Contains("test-prefix", tempDir.Path); 53var path = tempDir.Path; 127extractedPath = tempDir.Path; 179Assert.NotEqual(tempDir1.Path, tempDir2.Path); 180Assert.True(Directory.Exists(tempDir1.Path)); 181Assert.True(Directory.Exists(tempDir2.Path)); 221var dirPath = tempDir.Path; 241var dirPath = tempDir.Path; 265var dirPath = tempDir.Path; 310var dir1Path = tempDir1.Path; 311var dir2Path = tempDir2.Path; 351var dirPath = tempDir.Path; 420Assert.True(Directory.Exists(tempDir.Path));