Visual Studio T4 (Text Template Transformation Toolkit) Files

T4 is a Visual Studio code-generation language which was introduced with Visual Studio 2005. T4 templates are used in the Entity Framework and MVC and can be useful for your own development purposes.
T4 is not tightly integrated into Visual Studio and there iss no item templates in File > New Item and no intellisense or [...]

Read more

Customize the Start Page in Visual Studio 2010

Visual Studio 2010 allows for customization of  the start page, this feature can be  used this feature to display items such as  build status, current bugs,  etc.

1. Navigate to the StartPages folder in File Explorer (in Windows Vista and Windows 7 this is located at C:\Users\[username]\Documents\Visual Studio\10\StartPages). Open StartPage.csproj and note that the StartPage.xaml file is a standard XAML page [...]

Read more

Create a Snippet in Visual Studio 2010

Pre-2010 versions of  Visual Studio had a  snippets feature which allowed users to  save code blocks for later insertion. Visual Studio 2010 contains a numerous new snippets (especially ASP.NET snippets) and allows users to easily create their own snippets. Creating snippets in VS2008 was possible but without using third-party tools it was a tricky process.
VS 2010 greatly simplifies [...]

Read more

Visual Studio Debugging Tutorial – Basics

If there’s a single feature of Visual Studio that every developer uses and is essential to the development process it is the built-in debugger.
Debugging can be commenced by clicking the green arrow button in the VS toolbar, selecting Debug-Strart Debugging from the menu, or hitting F5. Before commencing debugging you will need to select what [...]

Read more