VS 11 Beta Cannot start process because a file name has not been provided

后端 未结 5 398
余生分开走
余生分开走 2021-01-12 05:13

This is what I\'m getting when I build my Test project:

\"VS

With th

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-12 05:50

    Found a correlation:

    When NuGet auto-pull is enabled, I run into this issue on VS 11 after about ~15 builds. Deleting the Packages folder and forcing a re-pull of dependencies on build corrects.

    I also noticed that if I manually purge the obj/bin folders in the solution root, the solution is corrected.

    Therefore, I am thinking this sounds like the Test Suite is not updating cached dlls with that of the current solution configuration. As we edit, the dlls are getting out of sync and thus causing the unit test fixture to fail to initiate.

    Hope this helps.

提交回复
热议问题