Posts

Showing posts from October, 2013

Debugging Code in Code Map

Image
  Code Maps are now integrated with visual studio debugger. So when you debug the code you can see the stack trace in a visual manner. To Integrate you debugger you can use the following icon in visual studio so it will create the code map for you debugging session. When you start debugging of you code you will see this icon. When you click on the the icon, it will generate the code map for you, & when you stepping through the code parts it will show you visually where you exactly are as below. Arrow will show the current position. You can add comments while you debugging the code for reference. Then if you want you can share your visualized version of you debugger session with the team as below. This helps you to visualize your debugger more effective way. http://channel9.msdn.com/Series/Visual-Studio-2012-Premium-and-Ultimate-Overview/Visual-Studio-Ultimate-2012Debug-visually-with-Code-Map-debugger-integration Happy Debugging !!!!!!!!!!

Change Tfs Workspace Name

  In case in you have changes your computer name & you want to change the Tfs workspace name follow the following command. 1. Load the Visual Studio developer command prompt. 2. Run the Following Command tf workspaces /updateUserName: OldUserName /collection:http:// Tfs_server :8080   you can find more command here. http://msdn.microsoft.com/en-us/library/cc31bk2e(vs.80).aspx

Code Maps In VS 2012

Image
  Code maps is another attractive visualization tool came with VS 2012 Update 1. it is more similar to the dependency graphs but this has more usability as this has been integrated with visual studio debugger so that the user can use this to visualize their debugging stack trace using this. We will see how we can use this. Generate a Code Map : Right click on the method which you want to evaluate & then click on “Show on code map”   then it will generate a code map as below. Adding Items to Code Map: when you right click on the “DrawRectangle” in the surface you will get some options to add items to your map as you prefer. Show Fields this references :- Will show all the global fields or properties which this particular method is referencing. In the code sample which I am using this method using a global variable named rectangle. 2. Find All References :- suppose you have a bug in the DrawRectangle(). so you  need to see what are the other methods which referencing th