Problem in accessing component in vs.net 2003 which is developed in vs.net2005  
Author Message
AmolShinde06





PostPosted: Common Language Runtime, Problem in accessing component in vs.net 2003 which is developed in vs.net2005 Top

I have created one dll in vs.net 2005 and i am trying to use in vs.net 2003.but while taking reference in vs.net 2003 it is giving statement like it is not valid assembly or com dll. so please can i get help on this.


.NET Development26  
 
 
David M. Kean - MSFT





PostPosted: Common Language Runtime, Problem in accessing component in vs.net 2003 which is developed in vs.net2005 Top

Assemblies build against .NET 2.0 (or within Visual Studio 2005) cannot be consumed by assemblies built against .NET 1.x.

The reverse, however, can be done (ie .NET 1.x assembly consumed by a .NET 2.0 assembly).

Regards

David