Simply creates the directory structure necessary for writing files when running in standalone mode.

This commit is contained in:
Michael Yanni 2019-12-17 15:17:03 -08:00
Родитель 29d8fcd34c
Коммит be3e045096
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -65,6 +65,7 @@ namespace AutoRest.CSharp.V3.JsonRpc.MessageModels
}
filename = Path.Combine(_basePath, filename);
Console.WriteLine($"Writing {filename} {artifactType}");
(new FileInfo(filename)).Directory?.Create();
await File.WriteAllTextAsync(filename, content);
}