Visual studio 2013 + .Net 4.5.1 + Edit and continue 64 bit: not working

霸气de小男生 提交于 2019-11-30 03:25:01

This is a known issue when referencing portable libraries and using Edit & Continue. We are looking to fix this in a future version of Visual Studio.

A workaround for now:

  1. Right-click on the project with the issue in Solution Explorer and choose Unload
  2. Right-click on the unloaded project and choose Edit
  3. Within the body of the first <PropertyGroup> element, add the following: <_ResolveReferenceDependencies>true</_ResolveReferenceDependencies>
  4. Reload the project saving changes

This should fix the build issue.

Note: Depending on the project, this might have a performance hit, not only during Edit & Continue usage, but just general usage within VS.

In my case, the only solution that worked was to remove the workspace and map&get again.

To remove the workspace, Source controlAdvancedWorkspaceRemove.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!