Suzanne Cook's .NET CLR NotesCommon Language Runtime DeveloperVersioningDeploying Unmanaged Files- October 28, 2004 An unmanaged dll can be wrapped in a managed assembly by adding it as a file of a multi-module assembly. Then, it can be deployed and versioned in the same way as managed assemblies. (So, that assembly could contain nothing but metadata and unmanaged code - no managed code, if you prefer. It can also contain multiple unmanaged files in the same assembly.) If your compiler does not support this directly, you can get this to work by adding that file as a linked managed resource. For example,.http://blogs.msdn.com/suzcook/archive/2004/10/28/versioning-deploying-unmanaged-files.aspx |