Building a C# class library using the 1.0 framework with VS.NET 2003

  • Thread starter Thread starter ajerijian
  • Start date Start date
A

ajerijian

Hi all,

Is there a way to build a C# class library with VS.NET 2003 and link
the library against the .NET Framework version 1.0? We are writing an
application that uses a DLL that requires version 1.0 of the
framework.

Thanks,
ajerijian
 
Have you considered using assembly redirection with the DLL? Go here =>

ms-help://MS.NETFrameworkSDKv1.1/cpguidenf/html/cpconconfiguringnetframework
applications.htm

and

ms-help://MS.NETFrameworkSDKv1.1/cpguidenf/html/cpconassemblyversionredirect
ion.htm

and

ms-help://MS.NETFrameworkSDKv1.1/cpguidenf/html/cpconcreatingpublisherpolicy
file.htm

eb
 
Build and test. Then, rebuild with the csc.exe from the 1.0 Framework
library. As long as you have not hit something that is changed in 1.1, you
are fine.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************************************************
Think outside the box!
***************************************************************
 
Back
Top