Viewing entries tagged
Visual Studio 2008

2 Comments

The case of the Missing Team Project in VS 2010

Ran into a strange issue today when trying to upgrade a project from VS2008 to VS2010. We are running TFS 2010 and the Team Project appears fine in Team Explorer under VS2008 but is mysteriously missing from Team Explorer in VS2010. My windows account is also part of the Project Collection Administrators group.

SNAGHTML3fab60

SNAGHTML3c486f

2 Comments

Comment

Weekly Training - Debugging in Visual Studio 2008

I recently had a few of the junior and work experience developers asking for some help in solving some coding issues.

More often then not the answer was in front of them but they didn’t know about tools such as Quick Watch, Navigating through code, Breakpoints and the Callstack window.

I decided it was time to get back to basics and show them all the tools they can use to find and solve the issues themselves.

Comment

Comment

Tip - Run batch files from solution explorer with PowerShell

Quick tip for those of you who use a batch file to regenerate your data access layer.

You might have noticed that if you try to run (double click) a batch file from the solution explorer window it just opens the batch file in a text editor.

To make it actually run you:

  1. Right click the batch file
  2. Select “Open With…”
  3. Click “Add…”
  4. In “Program name” put the path of PowerShell (“C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe”)
  5. In “Friendly name” type in “PowerShell”
  6. Click OK

Comment