VS 2017 Metadata file '.dll could not be found

后端 未结 28 1558
日久生厌
日久生厌 2021-01-31 07:06

I know there is another question with exact the same problem, but I went trough all those answers, and none helped me. :( (This was the question.)

I just created a new A

28条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-31 07:34

    Running this command in bash to delete all bins worked for me

    $ find . -iname "bin" -o -iname "obj" | xargs rm -rf
    

    Can't guarantee it'll work for anyone else though

    Also be aware it'll delete all bin files -so you will have to rebuild all projects. Obviously best to cd into the relevant directory before using it.

提交回复
热议问题