Visual Studio refuses to build project due to missing assembly reference that isn't missing

前端 未结 6 1378
庸人自扰
庸人自扰 2020-12-18 18:38

I\'m building a c# windows service and has added a couple of assembly references (to other projects of my own) to my project.

I get the following error when I build

6条回答
  •  佛祖请我去吃肉
    2020-12-18 19:09

    Reinstalling packages worked for me.

    From the Package Manager Console, run the the following command to reinstall all packages.

    update-package -reinstall

    You can target a single package with:

    update-package PACKAGE_NAME -reinstall

提交回复
热议问题