Hi All
I have my application built with Framework1.1.
1. Will my application work in a machine where only 2.0 is present ?
2. what are the steps i must do in order to make my 1.1 application work
with 2.0 ???
Thanks
Senthil
Mattias Sjögren - 02 May 2006 06:33 GMT
>1. Will my application work in a machine where only 2.0 is present ?
>2. what are the steps i must do in order to make my 1.1 application work
>with 2.0 ???
Most likely yes. Most applications work with 2.0 without any special
actions.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Huihong - 02 May 2006 07:12 GMT
You can create a <app>.exe.config file, replace <app> with your
assembly's name. Put something like the following into the file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<requiredRuntime version="v1.1.4322"/>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
Huihong Luo
Deploy .NET without Framework
http://www.remotesoft.com/linker/