How to build dll work both on 2.0 and 1.1?

  • Thread starter Thread starter davidw
  • Start date Start date
D

davidw

I create c# project on a machine has 1.1, when install the project msi, it
asks to install .NET 1.1, but when go to microsoft sie, all you see are 2.0.
Even on machine install 1.1, the installation still ask for 2.0.

Is there a way I can make my dll work on both 1.1 and 2.0?

thanks!
 
davidw said:
I create c# project on a machine has 1.1, when install the project
msi, it asks to install .NET 1.1, but when go to microsoft sie, all
you see are 2.0. Even on machine install 1.1, the installation still
ask for 2.0.

Is there a way I can make my dll work on both 1.1 and 2.0?

thanks!

A dll build for .net 1.1 will also work on .net 2.0 without a
problem, in 99% of the cases.

FB

--
------------------------------------------------------------------------
Lead developer of LLBLGen Pro, the productive O/R mapper for .NET
LLBLGen Pro website: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------
 
Back
Top