To create the macros, Open the Visual Studio and go to Tools Menu > Macros > Macros IDE, otherwise use short cut key Alt+F11. You see IDE as below.
![]() |
Visual Studio Macros IDE |
Private Sub DebuggerEvents_OnEnterDesignMode(ByVal Reason As EnvDTE.dbgEventReason) Handles DebuggerEvents.OnEnterDesignMode
For Each p In System.Diagnostics.Process.GetProcesses
If p.ProcessName.IndexOf("WebDev.WebServer40") > -1 Then
p.Kill()
End If
Next
End Sub
That’s is all you have to do. Right now, you don’t need to worry about it. Just mouse over the asp.net icons.:)
Thank you -this was very helpful. Gail
ReplyDelete