vote up 0 vote down star

I know it's possible to run a .NET application using a portable Mono executable without having .NET framework installed but is it possible to load and use an assembly is this situation?

thanks in advance.

flag

You could potentially parse the assembly byte-by-byte, but that is quite a chore. – John Gietzen Nov 5 at 18:18

3 Answers

vote up 2 vote down check

If you're trying to load an assembly without the Microsoft .NET framework, the only possibility I know of would be to embed Mono into your Win32 application, and use it to host the assembly. The Mono embedding API could potentially be used to open and execute your .NET assembly (using the mono runtime and libraries).

link|flag
Thanks. mono-project.com/Embedding_Mono – AndrĂ© Pena Nov 5 at 18:53
vote up 2 vote down

I'm unclear as to what you're asking but it appears to be ...

Is it possible to use a normal .Net Assembly from a Win32 process if the CLR is not installed?

If so the answer is a resounding no. All .Net apps require the CLR to be installed in order to run.

link|flag
vote up 1 vote down

it is possible to create and distribute an application without needing to install the .net framework, for example Vmware Thinapp (or Xenapp) can do that, putting the framework and the executable in a single container.

link|flag

Your Answer

Get an OpenID
or

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