as tittle says I cannot disassembly any code in Visual Studio 2013
I disabled "Just My Code" and "Step Over Properties and Operators" settings
solution is build properly
How do I solve this problem?
problem solved
Project Properties -> Debugging -> Debuger Type change to Mixed
Related
I have a project that is working correctly on Visual studio 2013 Ultimate.
Now we have installed Visual studio 2017 Enterprise.
When I compile and run my project on VS2017 , on several lines of code I receive a strange error message :
"Cannot obtain value of the local variable or argument because it is not
available at this instruction pointer, possibly because it has been optimized away."
What can I do , because on VS2013 I had no problems at all.
Thank you !
uncheck in the project "optimize code"
Also, set the debug info dropdown to full in the advanced options
go to Debug->Options or Tools->Options
and check Debugging->General->Suppress JIT optimization on module load (Managed only)
if you would like a technical reason, you need to post your code
I wrote a solution with Visual Studio 2015.
I copied the solution to a PC which has only Visual Studio 2013.
In the Project Properties I have changed the Platform Toolset to Visual Studio 2013 (v120).
The error still remains and I am not able to compile the project. Any suggestions?
Thanks.
If msbuild still complains about v140, this likely means v140 is still in the project file - which you can verify with a text editor.
Are you sure you changed the toolset for all platform/configuration combinations? For instance if you just open the settings dialog and it happens to be showing properties for Debug|Win32 and you change one of those, but then you build Release|Win32, the latter combination will still use v140. Open the proprties dialog again and verify all platforms and configurations use the correct toolset. Or use find/replace from v140 -> v120 in a text editor
I'm using Visual Studio 2015 Community and Resharper 9.
In XAML Editor, when typing some element, two pop-up lists of intellisense shown up, one of VS Intellisense, the other one is from Resharper.
Could anybody help me with this problem? Thank you!
ReSharper version info
Visual Studio version info
This is due to a change in Visual Studio - the XAML editor was replaced/updated and got a new GUID, which your version of ReSharper doesn't recognise. So, it doesn't know to block Visual Studio's code completion, but still knows it's a XAML file, so shows its own, and you end up with two code completion windows.
The easiest fix is to update to the latest version of ReSharper, which has fixed this. Alternatively, you can try and disable Visual Studio's code completion for XAML in Tools → Options → Text Editor, or disable ReSharper's code completion for XAML in ReSharper → Options → Intellisense.
I am getting the following error in Visual Studio 2013 every so often when debugging. This didnt happen in Visual Studio 2012.
It seems the default settings in VS2013 changed slightly (from what I can tell anyway). Go into Tools -> Options -> Debugging -> General. Scroll down and uncheck "Warn if no symbols on launch (Native only)". That should stop the message from appearing.
In visual studio 2008 while in the debug mode when we initiate a thread and put break points inside the thread function. Visual Studio doesn't debug giving explanation that i don't have the code. Why does this happens. How to do it
Try unchecking the Just My Code option in Tools -> Options -> Debugging.