Browse Source
Prefer User Directory for Projects into containers (#536)
pull/542/head
Justin Kotalik
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Microsoft.Tye.Hosting/TransformProjectsIntoContainers.cs
|
|
|
@ -20,7 +20,7 @@ namespace Microsoft.Tye.Hosting |
|
|
|
public TransformProjectsIntoContainers(ILogger logger) |
|
|
|
{ |
|
|
|
_logger = logger; |
|
|
|
_certificateDirectory = new Lazy<TempDirectory>(() => TempDirectory.Create()); |
|
|
|
_certificateDirectory = new Lazy<TempDirectory>(() => TempDirectory.Create(preferUserDirectoryOnMacOS: true)); |
|
|
|
} |
|
|
|
|
|
|
|
public Task StartAsync(Application application) |
|
|
|
|