You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
I would like to know this because I got a c++ /clr plugin to a pure c++ exe program that has it's own plugin interface. The plugin basically then allows plugins to be made using c#. However any and all C# code would have to be merged in with the base c++ /clr code and outputted as the original file name as the file that was before made in just C#. This basically would be how it would actually be able to work.
And so basically, somehow I got to look and see if dependencies are not in the GAC, and then if not, combine them in to avoid causing the pure c++ exe program from crashing miserably.
The text was updated successfully, but these errors were encountered:
Sorry, but ILMerge is unable to merge anything other than fully managed assemblies. As far as I know, the C++/CLR assemblies contain lots of unmanaged goo so ILMerge would be unable to include such an assembly into its output, merged, assembly.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I would like to know this because I got a c++ /clr plugin to a pure c++ exe program that has it's own plugin interface. The plugin basically then allows plugins to be made using c#. However any and all C# code would have to be merged in with the base c++ /clr code and outputted as the original file name as the file that was before made in just C#. This basically would be how it would actually be able to work.
And so basically, somehow I got to look and see if dependencies are not in the GAC, and then if not, combine them in to avoid causing the pure c++ exe program from crashing miserably.
The text was updated successfully, but these errors were encountered: