vote up 2 vote down star
4

Possible Duplicates:
.NET “must-have” development tools
What’s in your web-developer toolbox?

Can someone comeup with the possible toolkits/plugins (that can be embedded with VS 2008 as well 3rd party tools) which might facilitate raw C# , web Development .?

example

Code optimization : ??

Code Metrics : ??

Debugging : ??

Decompiling : ??

unit testing : ??

and

?? :??

thanks,

vijay.

flag

43% accept rate

closed as exact duplicate by Lars Truijens, adrianbanks, Martin, abelenky, RichardOD Sep 27 at 15:52

5 Answers

vote up 1 vote down

Please check this SO thread

I am duplicating the accepted answer here.

SmartPaster - (FREE) Copy/Paste code generator for strings

AnkhSvn - (FREE) SVN Source Control Integration for VS.NET

VisualSVN Server - (FREE) Source Control

CodeRush - Code gen macros on steroids

Refactor - Code refactoring aid

CodeSmith - Code Generator

GhostDoc - (FREE) Simple code commenting tool

DXCore (FREE) and its many awesome plugins: DxCore Community Plugins, CR_Documentor, CodeStyleEnforcer, RedGreen

TestDriven.Net - (FREE/PAY) Unit Testing Aid

Reflector - (FREE) Feature rich .Net Disassembler Reflector AddIn's

Web Deployment Projects - Provides additional functionality to build and deploy Web sites and Web applications (source).

link|flag
vote up 1 vote down

Visual Studio Team Developer and Team Suite include many of these things.

Code optimization : I'm pretty sure this is done by default by the compiler in Release build. Do you mean you are looking for a profiler?

Code Metrics : Visual Studio Team Developer and Team Suite

Debugging : All versions

Decompiling : you can use Reflector

unit testing : Visual Studio Team Test or Team Suite

link|flag
vote up 2 vote down

If you're going to be doing C#, I can't recommend JetBrain's Resharper enough. Fantastic utility. Takes a bit to to learn all the keyboard short cuts but once you do, it's a tool you come to not be able to live without.

For Code Metrics, the internal Visual Studio code metrics is actually pretty good, so is the VS debugger. For unit testing, I perfer NUnit with either Resharper or TestDriven.NET. Both Resharper and TestDriven.NET integrate into Visual Studio to become your test runner so you don't have to load the NUnit test runner separately.

link|flag
vote up 2 vote down
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.