What add-ins do you wish were available for Visual Studio 2008? Describe it here, and maybe it already exists. Or perhaps, it will soon!
I want an add-in that allows me to paste a table with headers from Excel as object initialization code.
e.g.
Copy this:
CustomerId Name Phone 1 John 406-345-6789 2 Bob 406-234-5678 3 Jill 406-123-4567
Get this:
new List<Customer>() {
new Customer() { CustomerId = "1", Name = "John", Phone = "406-345-6789" },
new Customer() { CustomerId = "2", Name = "Bob", Phone = "406-234-5678" },
new Customer() { CustomerId = "3", Name = "Jill", Phone = "406-123-4567" },
};
It would prompt you for the type of the object.
This would be awesome for writing tests. What's your most-wanted add-in?
Personally, I want many of the old VC6 productivity tools, such as ClassWizard with custom DDX/DDV back in Visual C++. Having requested this for some time on various MS blogs, it appears that it may come true in VS2010.
(Apologies for hijacking a VS2008 entry with VS2010 stuff, but realistically, this is where you should be pitching your wish list for MS)
Not a wish, but go to http://visualstudiogallery.com/, there's plenty of addins available.
Id like a plugin that adds support for multiple monitors. Id love to have just the code window on 1 screen and all the debugging, stuff on another. Or the designer on 1 screen code on another.