Skip to main content

9 posts tagged with "Tools"

View All Tags

Visual Studio Code Theme customization

· 2 min read

My favorite source code editor is Visual Studio Code. Every day I use it for my web application, PWA ( progressive web application) and Ionic Mobile apps development. It is a light weight open source code editor developed by Tech giant Microsoft.

We can customize the look and feel of the editor according to our taste and comfort. In this small blog post I will show how modify the workbench.

How to make Visual Studio Run Faster

· 2 min read
  1. Make sure the latest service pack for Visual Studio is installed.
  2. Disable Navigation Bar – Go to Tools > Options > Text Editor > C# or All Languages and uncheck Navigation bar.
  3. Turn off animations – Go to Tools > Options > Environment and uncheck Animate environment tools.
  4. Turn off Track Active Item – This will turn off jumping in the explorer whenever you select different files in different projects. Go to Tools > Options > Projects and Solutions and uncheck Track Active Item in Solution Explorer. This will ensure that if you are moving across files in different projects, the left pane will still be steady instead of jumping around.
  5. Turn off Track Changes – Go to Tools > Options > Text Editor and uncheck Track changes. This will reduce overhead and speeds up IDE response.
  6. Turn off HTML Validation – Go to Tools > Options > Text Editor > HTML > Validation and uncheck Show errors.
  7. Turn off Start Page – Go to Tools > Options > Environment > Startup and select Load last loaded solution from the At Startup dropdown. This simply makes Visual Studio load faster when opening the application.

NOTE:

Above settings have been used for Visual Studio 2005 specifically but should still be of benefit for earlier and later versions of Visual Studio.

Visual Studio 2013 Update 1 for download

· One min read

In a blog post, S. Somasegar, Corporate Vice President of Microsoft Developer Division clearly mentioned that: “This is a targeted update, addressing some key areas of customer feedback since the Visual Studio 2013 release. For example, we heard your feedback about running Visual Studio in environments without IE10+, and have made several improvements to this experience in Update 1.” New features for developers include:

  • IntelliTrace Viewer users should note that it's been updated to support Internet Explorer 9.
  • A new version of Microsoft ASP.NET Web Frameworks and Tools (version 5.0.11213.0). It adds editing support for ASP.NET MVC 5.1 on top of all existing functionality from the Web Framework and Tools 5.0 release.
  • A new version of Nuget, 2.7.2. It fixes a bug which caused certain packages to fail when running package restore, update or uninstall.
  • Web tool, SignalR 2.0.1, which includes new item templates.

Download

Visual Studio 2008, 2010 Auto Uninstall Tools

· One min read

If you’ve any problems in uninstalling Visual Studio 2008, 2010 from Add/ Remove programs in XP or from Programs and features in Windows  7 you can use Microsoft Visual Studio 2008 Auto uninstall utility to remove Visual Studio 2008 and Visual Studio 2010 Auto uninstall utility to remove Visual Studio 2010 editions from your Computer .

1. Microsoft Visual Studio 2008 Auto Uninstall Tool

Download here

2. Microsoft Visual Studio 2010 Auto Uninstall Tool

Download here

Get back the Recent Documents Menu in Windows 7

· One min read

Here is how I got it back:

  1. Right click the Start/Win button, select Properties
  2. Click the Start Menu tab (it should be select as default)
  3. Click the Customize button
  4. Scroll down and check the Recent Items check box
  5. Click Ok
  6. Click Apply
  7. Click Ok
  8. Check "Recent" option in the start menu.

LightSwitch 2011

· One min read

Microsoft® Visual Studio® LightSwitch™ is used to build business applications for the desktop and cloud and focused on making it easy to develop line of business applications. It is based on data + screens which is common for LOB Applications.

Here are important links: Download a trial of LightSwitch 2011 for 90 days :

http://www.microsoft.com/download/en/confirmation.aspx?id=26830

IS0 format: http://go.microsoft.com/fwlink/?LinkId=216813 LightSwitch Developer Center: http://msdn.microsoft.com/en-US/lightswitch/ff938857

OverView: http://www.microsoft.com/visualstudio/en-us/lightswitch/overview

Code Snippets in VS2008 for C

· 2 min read

Usage

Enter snippet Keyword shown below and press TAB-TAB to expand the snippet

Snippet KeywordExpanded Snippet
#ifCode snippet for #if
#regionCode snippet for #region
attributeCode snippet for attribute using recommended pattern
checkedCode snippet for checked block
classCode snippet for class
ctorCode snippet for constructor
~Code snippet for destructor
cwCode snippet for Console.WriteLine
doCode snippet for do…while loop
elseCode snippet for else statement
enumCode snippet for enum
equalsCode snippet for implementing Equals() according to guidelines
exceptionCode snippet for exception
forCode snippet for ‘for’ loop
foreachCode snippet for foreach statement
forrCode snippet for reverse ‘for’ loop
ifCode snippet for if statement
indexerCode snippet for indexer
interfaceCode snippet for interface
invokeCode snippet for safely invoking an event
iteratorCode snippet for a simple iterator
iterindexCode snippet for ‘named’ iterator/indexer pair using a nested class
lockCode snippet for lock statement
mboxCode snippet for MessageBox.Show
namespaceCode snippet for namespace
propCode snippet for an automatically implemented property
propgCode snippet for an automatically implemented property with a ‘get’ access or/and a private ‘set’ accessor
simCode snippet for int Main()
structCode snippet for struct
svmCode snippet for ‘void Main’ method
switchCode snippet for switch statement
tryCode snippet for try catch
tryfCode snippet for try finally
uncheckedCode snippet for unchecked block
unsafeCode snippet for unsafe statement
usingCode snippet for using statement
whileCode snippet for while loop