Controlling the .NET runtime host provided by IJW

  • Thread starter Thread starter Bern McCarty
  • Start date Start date
B

Bern McCarty

If I want to use C++ Interop/IJW and I want the .NET runtime that I get to
be STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST is there a way to do that
short of writing to the hosting interfaces and starting up the CLR myself?
Seems like controlling this sort of thing should be possible through the
app.config file or registry or something.

Bern McCarty
Bentley Systems, Inc.
 
Bern McCarty said:
If I want to use C++ Interop/IJW and I want the .NET runtime that I get to
be STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST is there a way to do that
short of writing to the hosting interfaces and starting up the CLR myself?
Seems like controlling this sort of thing should be possible through the
app.config file or registry or something.

Good question. :-)

FWIW: Not long ago I asked myself the same question. I googled for an answer
though I did not post the question publicly here. In the end, I decided to
host the CLR myself. It turned out to be less work than I thought it would
be.

Regards,
Will
 
Back
Top