.NET framework theories
-
Is it possible to add only the needed .NET dll's to an application as a resource to "pre-extract", so that a machine you are deploying your application to, does not need huge .NET framework installed for it to work? OR is there a way to capture the native code that the JIT compiles out of the MSIL and create a PE with it, or will something like that not include garbage collection, etc ?
-
Is it possible to add only the needed .NET dll's to an application as a resource to "pre-extract", so that a machine you are deploying your application to, does not need huge .NET framework installed for it to work? OR is there a way to capture the native code that the JIT compiles out of the MSIL and create a PE with it, or will something like that not include garbage collection, etc ?
Salamander .NET Linker and Mini-Deployment Tool Deploy .NET w/o Framework [^] Never used it, read about it on Joel[^] earlier this year as a follow-up to Please sir, may I have a linker?[^] Michael CP Blog [^]
-
Salamander .NET Linker and Mini-Deployment Tool Deploy .NET w/o Framework [^] Never used it, read about it on Joel[^] earlier this year as a follow-up to Please sir, may I have a linker?[^] Michael CP Blog [^]
Ahh, thank you very much sir! This is exactly what I was looking for and could never find.