-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to retrieve AssemblyAttributes with ILRepack? #95
Comments
ILRepack simply uses Mono.Cecil under the hood, AFAICT you should use Cecil too instead of System.Reflection to avoid loading up the assemblies "for real". |
ok. let's rephrase: I assume we will take a dependency on ILRepack very soon. Since you depend 2015-05-20 15:35 GMT+02:00 Francois Valdy [email protected]:
|
Nope, Cecil version (custom build) is internalized in ILRepack. You'll end up with duplicate Cecil types in your runtime, but I'm not sure you need to be concerned about that. |
Only concern is my dll file size. |
So that ~400k you could get rid of by not-internalizing-cecil in ILRepack and sharing the dependency. |
fsprojects/Paket#827
we struggle to retrieve CustomAttributes with reflection and all the assembly loading is crashing and locking files,...
I'm looking for a sane alternative.
The text was updated successfully, but these errors were encountered: