In Visual Studio 2013 Community/Professional, you can set breakpoint to Hit Count or Condition. Is possible to set breakpoint to have both ?
It is possible to set both HitCount and Condition, at least I can to it in mi Visual Studio 2012 instance with no problem.
I see now that this is not available with the Express versions of Visual studio though
Related
I'm using visual studio 2015 community. Not sure if that's express and if that's what i need.
I see the mouse sign like it's thinking for about 5-10 seconds when running my program. When using visual studio 2013 pro it didn't do it.
I couldn't take a screenshot of it but i see the mouse circle sign thinking for 5-10 seconds before it continue to run my program.
Is there any reason why it's doing it in vs 2015 express ?
Maybe i will try visual studio 2013 express later i just wonder whats wrong with the 2015 express.
If i want to get now visual studio 2013 express should i get this version ?
Microsoft Visual Studio Express 2013 for Windows Desktop with Update 4
It's common issue in Visual studio update 1 RTM. I and other some people debugging winforms app, and found that when we are debugging it's almost hang the computer that we can't even take screenshot.
Did you try update 1 RC (As of now), It have improvement over debugging and it's look to me that this bug has been fixed in update 1 RC.
Last week I've updated my windows from 8.1 to 10 and my Visual Studio from 2013 Ultimate to Enterprise 2015.
Yesterday I've implemented Load Tests via a Web Performance and Load Test Project. At this point I'd like to add an ILoadTestPlugin via the "Add Load Test Plug-In" option.
This does not work, as Visual Studio tells me it cannot find System.Windows.Interactivity assembly.
As this also happens in my Visual Studio 2013 installation, I think the problem is not Visual Studio 2015 related.
As the error comes from the Visual Studio IDE as an Visual Studio internal error, this is not a duplicate of "how to add System.Windows.Interactivity to my solution!
I am looking for solution to modify variable at breakpoint hit in Visual Studio 2012
Previous Visual Studio versions it can be done using macros
e.g Visual Studio Breakpoint Macro to modify a value?
Can anyone help me about how to achieve that in VS 2012 ,Visual Studio 2012 doesnt support Macros , so i am not getting that option
I want to restart Debugging session programmatically in Visual Studio "2013 Express".
I saw some examples that can do it with EnvDTE but they are only supporting VS2010 and previous versions.
I have tried following code with different version of DTE Interface.
DTE2 myDTE = (DTE2)Marshal.GetActiveObject("VisualStudio.DTE.9.0");
myDTE.ExecuteCommand("Debug.Start"); // or Debug.StartWithoutDebugging
Is there any limitation for Visual Studio 2013 Express?
Thanks.
Murat.
I found the solution.
GetActiveObject() should be called for Visual Studio 2013 Express ("WDExpress.DTE.12.0")
So, correct flow is ;
DTE2 myDTE = (DTE2)Marshal.GetActiveObject("WDExpress.DTE.12.0");
myDTE.ExecuteCommand("Debug.Start"); // or Debug.StartWithoutDebugging
Thanks.
What is the correct order of installing visual studio 2010 and expression studio 4.0?]
In light of the WPF expression blend link not being present on the open lnk - i'm thinking that maybe the order of software installation is important. i am thinking first
expression studio 4.0 is first and then the visual studio 2010 is next because visual studio needs to know what links to find in order to place if any in its IDE.
Order is not important. IMHO. But when I istall this apps, first I setup VS. its just habit, nothing more.