NUnit versions...

  • Thread starter Thread starter Peter Kirk
  • Start date Start date
P

Peter Kirk

Hi

I have written some assemblies which are compiled using nunit version
2.2.8.0
These assemblies are to be included in an application with other assemblies
written by other companies.

The problem is that the other company used nunit 2.2.0.0
This causes an exception - saying that one or other of the versions of nunit
can't be found.

How can we fix this (without having to all compile against the same version
of nunit)? Is it possible to have different assemblies relying on different
versions of a 3rd party dll?

Thanks,
Peter
 
Hello Peter,

AFAIK is not, because they've made some design changes and you need to reference
to new nunit assembly and rebuilt your test project

PK> written some assemblies which are compiled using nunit version
PK> 2.2.8.0
PK> These assemblies are to be included in an application with other
PK> assemblies
PK> written by other companies.
PK> The problem is that the other company used nunit 2.2.0.0
PK> This causes an exception - saying that one or other of the versions
PK> of nunit
PK> can't be found.
PK> How can we fix this (without having to all compile against the same
PK> version of nunit)? Is it possible to have different assemblies
PK> relying on different versions of a 3rd party dll?
PK>
---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Back
Top