Ensure msbuild target test cleans up temp directory

This commit is contained in:
Nate McMaster 2017-01-06 10:46:00 -08:00
Родитель 2a2c06b3d5
Коммит cbaeb7cfb3
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -105,10 +105,11 @@ namespace Microsoft.Extensions.Configuration.UserSecrets
{ {
try try
{ {
// Directory.Delete(_tempDir, recursive: true); Directory.Delete(_tempDir, recursive: true);
} }
catch catch
{ {
Console.Error.WriteLine($"Failed to delete '{_tempDir}' during test cleanup");
} }
} }
} }