Log versions of all used DLLs
        Posted  
        
            by Bob
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Bob
        
        
        
        Published on 2010-04-06T10:58:47Z
        Indexed on 
            2010/04/06
            11:03 UTC
        
        
        Read the original article
        Hit count: 345
        
.NET
|compact-framework
I want to log the versions of all DLLs my .NET-application uses. It doesn't matter if the log-output is generated on startup or on first use of each DLL.
The first solution which came to my mind was to iterate over all DLL files which reside in the same directory as my assembly. But is this the best option I have? Is there any better way to do this? It's important that the solution should also work on .NET-Compact-Framework.
© Stack Overflow or respective owner