Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-20 Thread MEGA
t; <[EMAIL PROTECTED]> To: Sent: Thursday, July 20, 2006 6:12 PM Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework You need to realize that any process can only load one version of the CLR. Once the CLR has been loaded into a process, the only way to unload it is to exit the p

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-20 Thread J. Merrill
l Message- >From: Discussion of advanced .NET topics. >[mailto:[EMAIL PROTECTED] On Behalf Of Matthew Wills >Sent: 19 July 2006 00:18 >To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM >Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework > >Charles, > >http://dot

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-20 Thread Charles Gamble
ifest file used for ? Regards, Charles. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Wills Sent: 19 July 2006 00:18 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework Ch

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Matthew Wills
| | cc: | | Subject: Re: [ADVANCED-DOTNET] Loading specific

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Nicholas Palmer
anks, Nick -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Charles Gamble Sent: Tuesday, July 18, 2006 9:32 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework Thanks for the help so far on this.

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Paul Mehner
] On Behalf Of Bryan Porter Sent: Tuesday, July 18, 2006 8:10 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework Salutations Charles, As I recall, a process can only have one instance of the CLR loaded at any given time. If you are self-hosting

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Charles Gamble
: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Bryan Porter Sent: 18 July 2006 17:10 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Loading specific .NET framework Salutations Charles, As I recall, a process can only have one instance of the CLR

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Bryan Porter
Salutations Charles, As I recall, a process can only have one instance of the CLR loaded at any given time. If you are self-hosting the CLR (i.e. an unmanaged C++ application using the CLR COM objects) I suppose you could dynamically change the CLR (with the result of unloading any AppDom

Re: [ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Paul Mehner
Tuesday, July 18, 2006 6:17 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Loading specific .NET framework Is there any other way to load a different version of the .NET framework in a process other than using .NET configuration files ? Can the version loaded be changed w

[ADVANCED-DOTNET] Loading specific .NET framework

2006-07-18 Thread Charles Gamble
Is there any other way to load a different version of the .NET framework in a process other than using .NET configuration files ? Can the version loaded be changed while a process is running ? How exactly is the version of the framework to use determined ? Any help is appreciated, Charles.