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

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
 
M

Mattias Sjögren

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
 
C

Cowboy \(Gregory A. Beamer\)

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!
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top