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 ...
-
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
-
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.
-
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/
Similar Threads
-
By Application Development in forum DOTNET
Replies: 1
Last Post: 11-09-2007, 12:19 PM
-
By Application Development in forum DOTNET
Replies: 5
Last Post: 09-08-2007, 04:38 PM
-
By Application Development in forum labview
Replies: 0
Last Post: 08-23-2007, 10:10 AM
-
By Application Development in forum DOTNET
Replies: 2
Last Post: 04-05-2007, 05:38 AM
-
By Application Development in forum basic.visual
Replies: 3
Last Post: 07-05-2006, 10:05 PM