In Visual Studio 2017 v15.7.1 I am getting the following error window when trying to load one of my projects:
And when I go to the path specified, inside the te
I want to share a shell script that recursively removes bin and obj directories from the current directory
bin
obj
Navigate to the root directory of your solution via git bash or wsl
git bash
wsl
Run
find . -type d \( -name bin -o -name obj \) -exec rm -r "{}" \;
Enjoy!