use Extension Manager, Search in the Online Gallary for Power Productive tools and check the difference
Archive for the ‘Microsoft Visual Studio’ Category
Visual Studio 2010 Tips & Tricks
Multiple Startup Projects in Visual Studio
Visual Studio allows you to specify how more than one project is run when you start the debugger.
- In Solution Explorer, select the solution.
- On the Project menu, click Properties. The Solution Property Pages Dialog Box opens.
- Expand the Common Properties node, and click Startup Project.
- Click Multiple Startup Projects and set the project actions.
Discover the difference between .sln & .suo files in visual studio solution
the .sln file stores metadata about the solution
- related projects to the solution
- items available at solution level and not to particular element
- solution build configuration
the .suo file stores metadata used to customize the IDE
Note that: the .sln file can be shared between developers on development team, but the .suo file is user specific file and can’t be shared between developers
Difference between Web Site & Web Application @ Visual Studio
WebSite
- The Web Site project really is not a project at all since Visual Studio 2005 solution and project files are not created.
- All pages and code are stored in a directory, much like the traditional ASP model. When it comes to deployment, the easiest approach is to copy all of your files to your Web server and everything compiles on demand
- You could also use the aspnet_compiler.exe utility to precompile your site into a binary file and deploy to your Web site.
Web Application
- consists of a solution (.sln) and project files (.vbproj).
- It provides the benefit of generating a single assembly in the local /bin folder ready for deployment.
- This model also makes it easier to incrementally deploy changes made to your site.
My Source: http://msdn.microsoft.com/en-us/library/aa730880(VS.80).aspx#wapp_topic5


Use the Highlighter
This website now has an AutoPublish widget: