Johnny
Johnny

Reputation: 65

File not Found Exception was unhandled

I created a Project A class library that reference azure.identity and built A.dll.

Then I created a Project B and imported in A.dll, but error comes out that could not load assembly:

Upvotes: 0

Views: 57

Answers (1)

user2250152
user2250152

Reputation: 20635

In your project B add NuGet packages Azure.Identity and Microsoft.Graph in version 4.45.

Or if your project A and project B are part of the same solution then add project reference to project A in project B instead of importing A.dll.

Upvotes: 1

Related Questions