由于兼容性问题,我必须支持两个版本的 .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.402
?3.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