Showing posts with label VIsual Studio. Show all posts
Showing posts with label VIsual Studio. Show all posts

Thursday, August 29, 2013

TFS 2010 Power Tools -- Error 1001 in Windows 8

PROBLEM:
When trying to install "Team Foundation Server Power Tools December 2011" in Windows 8, you get the following error: "Microsoft Team Foundation Server 2010 Power Tools -- Error 1001". Also, you cannot see "Process Editor" menu in Visual Studio "Tools" menu.
You already installed (by this order):
1. Visual Studio 2010
2. Visual Studio 2010 SP1

SOLUTION:
Choose custom install and do not install "Best Practice Analyzer"


If you find this useful, you are welcome to press one of the ads in this page.. Thanks!


Tuesday, December 11, 2012

Microsoft pulls the plug from Silverlight?

PROBLEM:
Does Microsoft pulls the plug on its Silverlight?

SOLUTION:
"..We released Silverlight 5 in December 2011 and we’ve committed to supporting Silverlight into the year 2021."

8 years left..
Read more here: http://www.zdnet.com/microsoft-pulls-the-plug-on-its-silverlight-net-site-7000008494

If you find this solution useful, you are welcome to press one of the ads in this page.. Thanks!

Monday, July 16, 2012

Create basic MAIN-DEV branches in Team Foundation Server 2010

PROBLEM:
You want to create basic MAIN-DEV branches in Team Foundation Server 2010

SOLUTION:
  1. Open the source control in the new team project
  2. Get latest of the new empty source control project (will also map)
  3. Click on the new folder button and add a folder called “Main”
  4. Check-in the “Main” folder
  5. Right-click the “Main” folder and select “branching and merging” --> “convert folder to branch”
  6. “Main” branch is created
  7. Right click on the “Main” branch and from the menu select “branching and merging” --> “branch”
  8. Change the name of the branch from “Main-branch” to “Dev”
  9. “Dev” branch is created
If you find this solution useful, you are welcome to press one of the ads in this page.. Thanks!

Tuesday, November 1, 2011

Rollback your changes in the TFS 2010 source control to a specific date, time or changeset

PROBLEM:
You want to rollback your changes in the TFS2010 source control to a specific date, time or changeset

SOLUTION:
You can use the following tools to rollback the effects of one or more changesets to one or more version-controlled items. Those tools does not remove the changesets from an item's version history. Instead, this creates in your workspace a set of pending changes that negate the effects of the changesets that you specify.

Tool#1 - "tf rollback" command line using Visual Studio Command Prompt (2010).
The following example changes the content of dev_project to match the last changeset that was applied on or before midnight on August 31, 2011

c:\workspace>tf rollback /toversion:D08/31/2011 /recursive $/dev_project/

Tool#2 - using the new rollback features available in the UI with the latest TFS 2010 Power Tools.
You have the ability to rollback straight from Team Explorer without having to use the command-line approach


If you find this solution useful, you are welcome to press one of the ads in this page.. Thanks!