RSS
 

Archive for the ‘Microsoft Visual Studio’ Category

Be Higher Productive with Visual Studio 2010

22 Jul

use Extension Manager, Search in the Online Gallary for Power Productive tools and check the difference

 

Visual Studio 2010 Tips & Tricks

07 Jun

http://blogs.msdn.com/b/saraford/archive/2008/04/10/did-you-know-you-can-drag-and-drop-code-onto-the-toolbox-general-tab-191.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/05/20/multiple-views-of-the-same-document-window-vstipenv0016.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/05/08/use-a-datatip-to-edit-a-value-vstipdebug0026.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/05/06/setting-a-breakpoint-filter-vstipdebug0024.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/05/04/set-a-complex-breakpoint-condition-vstipdebug0022.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/05/03/set-a-simple-breakpoint-condition-vstipdebug0021.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/04/30/the-best-of-visual-studio-2010-using-the-call-hierarchy-c-only.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/04/28/the-best-of-visual-studio-2010-pin-a-project-to-the-recent-projects-list.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/04/24/create-new-code-snippets-from-existing-ones-vstiptool0016.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/04/23/the-best-of-visual-studio-2010-adding-comments-to-a-datatip.aspx

http://blogs.msdn.com/b/zainnab/archive/2010/04/23/using-the-code-snippets-manager-vstiptool0015.aspx

 

Multiple Startup Projects in Visual Studio

16 May

Visual Studio allows you to specify how more than one project is run when you start the debugger.

  1. In Solution Explorer, select the solution.
  2. On the Project menu, click Properties. The Solution Property Pages Dialog Box opens.
  3. Expand the Common Properties node, and click Startup Project.
  4. Click Multiple Startup Projects and set the project actions.

    Multiple Startup Projects

 

Discover the difference between .sln & .suo files in visual studio solution

16 May

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

21 Mar

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

 
 
 

You need to log in to vote

The blog owner requires users to be logged in to be able to vote for this post.

Alternatively, if you do not have an account yet you can create one here.

Powered by Vote It Up