Centos下卸载删除.Net Core

原文: Centos下卸载删除.Net Core

dotnet --list-sdks and dotnet --list-runtimes 查看版本

version="2.2.402"
sudo rm -rf /usr/share/dotnet/sdk/$version
sudo rm -rf /usr/share/dotnet/shared/Microsoft.NETCore.App/$version
sudo rm -rf /usr/share/dotnet/shared/Microsoft.AspNetCore.All/$version
sudo rm -rf /usr/share/dotnet/shared/Microsoft.AspNetCore.App/$version
sudo rm -rf /usr/share/dotnet/host/fxr/$version

Remove the .NET Core runtime and SDK | Microsoft Docs 

https://docs.microsoft.com/zh-cn/dotnet/core/install/remove-runtime-sdk-versions?view=dotnet-plat-ext-2.1&tabs=windows&pivots=os-linux

猜你喜欢

转载自www.cnblogs.com/lonelyxmas/p/12904933.html