Nissa Armelon
Nissa Armelon

Reputation: 111

Why can't NUnit file or assembly be found (C# dll)?

Even when my main is empty, I have the following error while loading a C# dll with NUnit:

System.IO.FileNotFoundException : Could not load file or assembly 'nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The system cannot find the file specified.

I don't understand why it can't find it, I have no clue where to start my search.

Upvotes: 0

Views: 1360

Answers (1)

S.Spieker
S.Spieker

Reputation: 7355

You can set the Reference to Copy local, for example:

copy local

Upvotes: 1

Related Questions