1 write to _tempDir
Aspire.Cli.Tests (1)
Secrets\SecretsStoreTests.cs (1)
14
_tempDir
= Path.Combine(Path.GetTempPath(), $"aspire-test-{Guid.NewGuid():N}");
5 references to _tempDir
Aspire.Cli.Tests (5)
Secrets\SecretsStoreTests.cs (5)
15
Directory.CreateDirectory(
_tempDir
);
20
if (Directory.Exists(
_tempDir
))
22
Directory.Delete(
_tempDir
, recursive: true);
26
private string GetSecretsPath() => Path.Combine(
_tempDir
, "secrets.json");
152
var path = Path.Combine(
_tempDir
, "nested", "dir", "secrets.json");