Alternative to Fusion Log Viewer?

前端 未结 2 1989
感情败类
感情败类 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.

提交回复
热议问题