使用 Chocolately 我如何仅升级一个并排软件包版本?

使用 Chocolately 我如何仅升级一个并排软件包版本?

由于兼容性问题,我必须支持两个版本的 .net core SDK。

因此我运行:

choco install dotnetcore-sdk --version 2.1.700 -y --side-by-side
choco install dotnetcore-sdk --version 3.1.100 -y --side-by-side

现在,如果我想保留2.1.700原样,我该怎么做而不卸载所有版本并重新安装 2.2.402 和 3.1.100 2.2.4023.1.100

谢谢!

答案1

哦,原来你可以这样做:

choco uninstall dotnetcore-sdk --version 2.1.700 -y --side-by-side
choco install dotnetcore-sdk --version 2.2.402 -y --side-by-side
choco install dotnetcore-sdk --version 3.1.100 -y --side-by-side

相关内容