In the meantime, I wrote a small console app that downloads some url and saves it to a local file. It's only a few lines. Create a new console app and use the following code:
class Program
{
static void Main(string[] args)
{
string uri = args[0];
string filePath = args[1];
byte[] bytes = (new WebClient()).DownloadData(args[0]);
File.WriteAllBytes(filePath, bytes);
}
}
That's it. Using that I was able to get my xaml. Gotta love that .net framework!
No comments:
Post a Comment