Ashwini Landge
Ashwini Landge

Reputation: 47

Could not load file or assembly 'System.Threading.Tasks, Version=1.5.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'

I am developing Web Application to upload a file on Google Drive but, there is a runtime exception as :- Could not load file or assembly 'System.Threading.Tasks, Version=1.5.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) I don't have any idea about this Please help me...

Upvotes: 2

Views: 5400

Answers (1)

katherine heigl
katherine heigl

Reputation: 199

Try following approach:

  1. Open Visual Studio
  2. Go to Tools -> Library Package Manager -> Package Manager console
  3. Run the following command:

PM>Install-Package Microsoft.Bcl.Async

Upvotes: 5

Related Questions