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

后端 未结 2 1238
难免孤独
难免孤独 2020-12-28 17:36

Supposedly vs 2013 added support for edit and continue 64 bit (see http://blogs.msdn.com/b/visualstudioalm/archive/2013/06/26/debugging-support-for-64-bit-edit-and-continue-

相关标签:
2条回答
  • 2020-12-28 18:25

    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.

    0 讨论(0)
  • 2020-12-28 18:28

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

    To remove the workspace, Source controlAdvancedWorkspaceRemove.

    0 讨论(0)
提交回复
热议问题