rider breakpoint on F# method - methods

Is there an example somewhere of a breakpoint on a method in F# under jetBrains Rider?
I start with an "empty" console app, put a breakpoint on main, and it has no effect

Related

Why does Visual Studio keep moving back to a breakpoint while I am inspecting?

Set a breakpoint anywhere in the code and from there go look around. For example, move back in the callstack or F12 into some class or member. Within a few seconds Visual Studio moves back to the screen with the breakpoint.
It basically breaks the debugger unless what you need is in the same spot as the breakpoint.

Visual studio 2015 typescript debug

I use VS2015 for my Typescript project.
When I place a breakpoint in function doSmth (see screenshot below),
VS place it for a whole function and I'm not able hit statement after then.
Right-click on the place where you want to place the breakpoint (in this case, the console.log statement) and select Breakpoint -> Insert Breakpoint. (This also helps for other languages like C#.)

Why does Visual Studio not hit breakpoint until second debug session?

When debugging a unit test through either the TEST menu or the right-click context menu, VS2013 always ignores the breakpoint in the unit test after making a code change to the current c# test class. Debugging a second time causes the breakpoint to be hit.
My suspicion is that this has to do with VS2013's new feature "Keep Test Execution Engine Running".
You can toggle that feature in Visual Studio's menu via "TEST - Test Settings".
You might also be able to specify that behaviour by using a runsettings file with KeepExecutorAliveAfterLegacyRun set to false: http://msdn.microsoft.com/en-us/library/vstudio/jj635153.aspx.

How to remove breakpoint visual studio express

I am working on a C# project in Visual Studio 2010 express, I have a breakpoint that only shows up when I am in the debug modus, I can remove it there, but it will show up again as soon as I start the debug modus again. Allways on a specific codeline, I tried to leave that line empty, then it jumped to the next one. It didnt showed up as I comented the whole code after that line out.
I dont have a breakpoint window in the debug menu ( maybe because it is the express version) so I can't acces to the "remove all breakpoints" function. Do I have to do some change in one of the debug files? Wich one?
thanks

Debug symbols not loaded when converting to .net 4

I have a .net 3.5 project in C# that hits breakpoints fine when I F5 it in Visual Studio 2010. However, when I change the project target framework to .Net4, and hit F5, then the breakpoints are not hit. If I mouse over the breakpoint icon i see that no debug symbols have been loaded for this document. If I change the target framework back to .Net3.5, breakpoints are hit as expected. Any pointers as to where I should look for why this is?
Click Debug, Windows, Modules, right-click your assembly, and click Symbol Load Info.

Resources