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
Naveen - 28 Dec 2005 15:12 GMT
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.
> Hi
>
[quoted text clipped - 25 lines]
>
> Senthil