.NET Framework 2.0For discussion of the Microsoft .NET Framework 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the .NET Framework 2.0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
i'm trying to use a .dll (class library) in .net 1.1 which is created in .NET 2.0. while adding a reference throws an error stating that it is not a valid dll reference. if anybody of you have faced this issue. please let me know.
Simply put, you can't reference a 2.0 assembly from 1.1. You can however reference a 1.1 assembly from 2.0. You'll have to take the 2.0 code and compile it in 1.1 in order to use it in 1.1 (assuming you can compile it).