Category Archives: VS2010

Show Hintpath references for all Visual Studio .csproj projects

It could be challenge to get an overview of all Hintpath references for a large number of Visual Studio projects if it were not for PowerShell v2: gci . -Filter *.csproj -Recurse|gc|?{$_ -match "<Hintpath Include="}|sort|group|select Name|out-gridview

Posted in VS2010 | Leave a comment

Adding Issue WorkItems In VS2010 Using PowerShell

Add-Issue.ps1 get-tfs.ps1   Adding workitems to Tfs is easy using the get-tfs.ps1 script included in the Tfs 2008 PowerTool.   Save the below Add-Issue.ps1 as New-Issue.ps1 and use it like this:   $tfs = .\get-tfs.ps1 http://tfs2010:8080/tfs # Change uri appropriately … Continue reading

Posted in VS2010 | Leave a comment