Remove unnecessary workaround. Resolves #165.

This commit is contained in:
Nate McMaster 2016-10-06 13:37:26 -07:00
parent 92a8d6d3bd
commit f9412e7707
No known key found for this signature in database
GPG Key ID: BD729980AA6A21BD
1 changed files with 0 additions and 5 deletions

View File

@ -28,11 +28,6 @@ namespace Microsoft.Extensions.SecretManager.Tools.Internal
_secretsFilePath = PathHelper.GetSecretsPathFromSecretsId(userSecretsId);
logger.LogDebug(Resources.Message_Secret_File_Path, _secretsFilePath);
// workaround https://github.com/aspnet/Configuration/issues/478
// TODO remove when tool upgrades to use 1.1.0
Directory.CreateDirectory(Path.GetDirectoryName(_secretsFilePath));
//end workaround
_secrets = new ConfigurationBuilder()
.AddJsonFile(_secretsFilePath, optional: true)
.Build()