Application running in Framework 2.0 ? - DOTNET

This is a discussion on Application running in Framework 2.0 ? - DOTNET ; 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 ...

+ Reply to Thread
Results 1 to 3 of 3

Application running in Framework 2.0 ?

  1. Default Application running in Framework 2.0 ?

    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






  2. Default Re: Application running in Framework 2.0 ?

    >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

    --
    Mattias Sjögren [C# MVP] mattias @ mvps.org
    http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
    Please reply only to the newsgroup.

  3. Default Re: Application running in Framework 2.0 ?

    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/


+ Reply to Thread

Similar Threads

  1. Replies: 1
    Last Post: 11-09-2007, 12:19 PM
  2. Running 3.0 Framework application on XP
    By Application Development in forum DOTNET
    Replies: 5
    Last Post: 09-08-2007, 04:38 PM
  3. Replies: 0
    Last Post: 08-23-2007, 10:10 AM
  4. Replies: 2
    Last Post: 04-05-2007, 05:38 AM
  5. Replies: 3
    Last Post: 07-05-2006, 10:05 PM