Running .NET 2.0 applications on .NET 1.1. Is it possible?

  • Thread starter Thread starter L Poppan
  • Start date Start date
L

L Poppan

It's possible to run applications generated for .NET 1.1 on .NET 1.0
by using the <supportedRuntime> and <assemblyBinding> tags. When I
try to use a similar technique to run an application generated for
..NET 2.0 on .NET 1.1, I get a BadImageFormatException. Is there some
other way to do this?

Thanks for yor help.

lpoppan
 
Is there some other way to do this?

No, you need the v2.0 framework to run assemblies compiled with the
v2.0 compilers.



Mattias
 
I would imagine it would be possible to recompile if you do not use any 2.0
specific classes, but you cannot simply add the <supportedRuntime> AFAIK, as
the compilers are updated.

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

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