all groups > dotnet clr > december 2005 >
You're in the

dotnet clr

group:

Running applications when both Framework version1.1 and 2.0 is present


Re: Running applications when both Framework version1.1 and 2.0 is present Naveen
12/28/2005 7:12:49 AM
dotnet clr: The CLR host dose look for a particular version if it is available and
load the one that is available uses the supportedRuntimeVersion tag.

<startup>
<supportedRuntime version="v2.0.50727"></supportedRuntime>
<supportedRuntime version="v1.1.4322"></supportedRuntime>
</startup>

In the above mentioned example the 2.0 runtime would be loaded if it is
available and if it is not available then the v1.1 would be loaded.

Where as the required runtime tag specifies that particular version is
required to launch the application.



[quoted text, click to view]
Running applications when both Framework version1.1 and 2.0 is present SenthilVel
12/28/2005 12:04:20 PM
Hi



I have my application developed/ compiled in version 1.1 framework.



in some of my machine when i have both 1.1 and 2.0 this caused me some
remoting errors.



so to resolve this error i have added

<startup>

<supportedRuntime version="v1.1.4322" />

</startup>

My Doubt is :

1. when i run my applications in machines where i have both the framerworks
is it enough i have the <supportedRuntimeVersion> ??

2. what are the situations i must use the <requiredRuntime> ??

3. or must i use both <requiredruntime> and <supportedRuntime> ??

Please do let me know

Thanks

Senthil







AddThis Social Bookmark Button