If you need to run MS Test command line utility as a 64-bit process you need to do 2 things: Disclaimer : Be aware that this is not supported and it is under you own risk. 1. Backup the MSTest.exe file first and then remove the 32-bit flag by running
Read More...
Do a web request using System.Net classes, HttpWebRequest or WebClient. For example: new WebClient().DownloadFile( "http://tinyurl.com/d5yy8a" , @"C:\Temp\file.xml" ) ; Or: HttpWebRequest.Create( "http://tinyurl.com/d5yy8a"
Read More...