How to redirect a .NET app to run on a specific .NET runtime
-
Hello, I need to redirect my application to run on the latest version of the .NET runtime available on a machine. Does anyone have any idea how I could do this WITHOUT using a configuration file. I saw an application that does that, it's called "netz" (a .NET application compressor) The application is available at this url: http://www.madebits.com/netz/download.php If I run that application with both .NET 2.0 and .NET 1.1 it will run on 2.0, but if I have only .NET 1.1 it will run on 1.1 aswell and it doesn't have a netz.exe.config file. Thanks a lot -- modified at 5:38 Monday 9th January, 2006
-
Hello, I need to redirect my application to run on the latest version of the .NET runtime available on a machine. Does anyone have any idea how I could do this WITHOUT using a configuration file. I saw an application that does that, it's called "netz" (a .NET application compressor) The application is available at this url: http://www.madebits.com/netz/download.php If I run that application with both .NET 2.0 and .NET 1.1 it will run on 2.0, but if I have only .NET 1.1 it will run on 1.1 aswell and it doesn't have a netz.exe.config file. Thanks a lot -- modified at 5:38 Monday 9th January, 2006
iis configuration mmc plugin's virtual dir property page has a tab called asp.net that maps which runtime to work in. just Control panel-> administrative tools-> iis -> select virtual dir and right click ; in menu properties the tab with asp.net look at it....(it configures by writing to directories' web.config) Mikail Çetinkaya . The C# DEveloper
-
iis configuration mmc plugin's virtual dir property page has a tab called asp.net that maps which runtime to work in. just Control panel-> administrative tools-> iis -> select virtual dir and right click ; in menu properties the tab with asp.net look at it....(it configures by writing to directories' web.config) Mikail Çetinkaya . The C# DEveloper
-
Hello, I need to redirect my application to run on the latest version of the .NET runtime available on a machine. Does anyone have any idea how I could do this WITHOUT using a configuration file. I saw an application that does that, it's called "netz" (a .NET application compressor) The application is available at this url: http://www.madebits.com/netz/download.php If I run that application with both .NET 2.0 and .NET 1.1 it will run on 2.0, but if I have only .NET 1.1 it will run on 1.1 aswell and it doesn't have a netz.exe.config file. Thanks a lot -- modified at 5:38 Monday 9th January, 2006
There's nothing to tell it to use the latest Framework version. This happens automatically, if the version of the .NET Framework that built the application is not installed. More information can be found here[^]. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Hello, I need to redirect my application to run on the latest version of the .NET runtime available on a machine. Does anyone have any idea how I could do this WITHOUT using a configuration file. I saw an application that does that, it's called "netz" (a .NET application compressor) The application is available at this url: http://www.madebits.com/netz/download.php If I run that application with both .NET 2.0 and .NET 1.1 it will run on 2.0, but if I have only .NET 1.1 it will run on 1.1 aswell and it doesn't have a netz.exe.config file. Thanks a lot -- modified at 5:38 Monday 9th January, 2006
I don't think it's possible without a config file. The "secret" of netz is that it is compiled for .NET 1.0. Since you don't have that version on your machine, the newest available version is used instead.