vote up 1 vote down star
1

We have an MFC applcation EXE that hosts COM objects which are the main parts of the application, this is so we can dymanically build in more functionality. Lately new code has been created using C# and made COM visible supporting the same interface. These have all typically been built against V2.X .Net runtime. We now want to be able to deploy on a client machine that may only have V4.X .Net runtime but we want to maintain compatability with the V2.X code. If the main application had been a .Net application then we could have used in the config file. This doesn't work with a non .Net host application.

Does anyone know if the same can be done for the .Net COM components, i.e. specify somewhere that they can run on v4.X without having to re-build and re-target them?

flag

2 Answers

vote up 0 vote down

What v4.x runtime? latest framework version is 3.5 and that does not contain changes to the runtime. It's the same runtime as 2.0 with some additional libraries.

link|flag
Hi, thanks for response, we are using .Net Framework 4 Beta 2 (Client Profile as it happens), it ships with a new runtime of V4.0 – unknown (yahoo) Nov 4 at 14:43
Maybe i'm wrong but as I am aware .NET 4 will not be changing the CLR runtime but instead will deliver the DLR witch is added to support dynamic languages. – AZ Nov 5 at 16:11
AZ - .Net framework 4.0 is actually a new runtime (in addition to DLR features you mentioned). See infosysblogs.com/microsoft/2008/… for more information (first link I found on Bing with good information). There's also a link to a nice PDC2008 presentation in there. – Doug Rohrer Nov 6 at 22:06
vote up 0 vote down

I found the answer, you need to put a bit more in the app.exe.config file, see below

<configuration>
    <startup useLegacyV2RuntimeActivationPolicy="true">
        <requiredRuntime safemode="true" imageVersion="v4.0.21006" version="v4.0.21006"/>
        <supportedRuntime version="v4.0" sku="client" />
    </startup>
</configuration>

This then allows unmanaged host exe files to launch managed components that are not built against the target v4 runtime.

link|flag
<configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <requiredRuntime safemode="true" imageVersion="v4.0.21006" version="v4.0.21006"/> <supportedRuntime version="v4.0" sku="client" /> </startup> </configuration> – unknown (yahoo) Nov 4 at 16:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.