Whenever I call a method that creates new HttpClient(), i get and exception. No clue, as System.Net.Http is already referenced.
public async Task<Stuff> GetOrder(int id)
{
var t = new HttpClient();
}
"InnerException": { "ClassName": "System.IO.FileNotFoundException", "Message": "Could not load file or assembly 'System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.",
Any ideas?