This commit is contained in:
haibo zhang 2022-01-27 19:41:15 +08:00 коммит произвёл GitHub
Родитель d0f73fe0d6
Коммит 54c3e2fa00
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1418,7 +1418,7 @@ namespace Mono.Documentation
private static TextWriter OpenWrite (string path, FileMode mode)
{
var fs = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? QuickIOFile.Open(Path.GetFullPath(path), mode) : new FileStream(path, mode);
var fs = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && Path.GetFullPath(path).Length>=260 ? QuickIOFile.Open(Path.GetFullPath(path), mode) : new FileStream(path, mode);
var w = new StreamWriter (fs, new UTF8Encoding (false));
w.NewLine = "\n";
return w;