Alternative to Fusion Log Viewer?

前端 未结 2 1976
感情败类
感情败类 2020-12-31 14:44

Are there any alternative Fusion Log Viewer programs, other than Fuslogvw.exe, or directing the Fusion log output to your own directory and then examining the tons of HTM fi

相关标签:
2条回答
  • 2020-12-31 14:55

    All the Fusion Log Viewer does is flip some registry settings and examine the log files.

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion
    Add:
    DWORD ForceLog set value to 1
    DWORD LogFailures set value to 1
    DWORD LogResourceBinds set value to 1
    String LogPath set value to folder for logs (e.g. C:\FusionLog\)
    

    It might not be possible to determine exactly when each assembly is loaded based on the fusion loader's output. The fusion loader is somewhat of a black box in that respect.

    Your best bet might be to step directly into your application with the debugger and watch the Modules window in Visual Studio. If you step carefully through the application, you should be able to see at which point each assembly gets loaded into memory.

    0 讨论(0)
  • 2020-12-31 15:01

    Might be late to the party but I think Fusion++ is a pretty good match for your question.

    It takes everything away from you - no more file hunting: Just click "Record" to capture assembly logs. If you are done, click "Stop" again and Fusion++ will parse all the log files for you.

    0 讨论(0)
提交回复
热议问题