msbuild on unix has some issues
This commit is contained in:
Родитель
75850d3661
Коммит
5c4b65e085
|
@ -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)}\"");
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче