Revision ace5e5f48c6ec6e7254b9b4f83e722e31be24302 authored by Chris Cranford on 20 February 2024, 10:13:11 UTC, committed by GitHub on 20 February 2024, 10:13:11 UTC
1 parent 247de8e
Raw File
uninstall-tools.sh
#
tools=$(cat .config/dotnet-tools.json | jq -r '.tools[] | .commands[0]')

for tool in $tools
do
    t=`echo $tool | awk '{print $1}'`
    echo "t = '"$t"'"
    dotnet tool uninstall $t
done
cp .config/dotnet-tools.json.save .config/dotnet-tools.json
dotnet nuget locals all --clear
back to top