msbuild on unix has some issues

This commit is contained in:
Matthew Leibowitz 2018-03-22 22:47:19 +02:00
Родитель 75850d3661
Коммит 5c4b65e085
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 00A672181E6BF432
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -57,7 +57,7 @@ var RunMSBuildRestoreLocal = new Action<FilePath> ((solution) =>
c.ToolPath = MSBuildToolPath;
}
// c.Properties ["RestoreSources"] = NuGetSources;
c.ArgumentCustomization = args => args.Append ($"/p:RestoreSources=\"{string.Join (";", NuGetSources)}\"");
c.ArgumentCustomization = args => args.Append ($"/p:RestoreSources=\"{string.Join (IsRunningOnWindows () ? ";" : "%3B", NuGetSources)}\"");
});
});