The project system has encountered an error When trying to load project

前端 未结 3 2276
一整个雨季
一整个雨季 2021-02-19 07:36

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

3条回答
  •  無奈伤痛
    2021-02-19 08:17

    I want to share a shell script that recursively removes bin and obj directories from the current directory

    Navigate to the root directory of your solution via git bash or wsl

    Run

    find . -type d \( -name bin -o -name obj \) -exec rm -r "{}" \;
    

    Enjoy!

提交回复
热议问题