Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there anything like Assembly Binding Log Viewer on Windows Azure?

Tags:

logging

azure

Is there anything like Assembly Binding Log Viewer (Fusion Log Viewer) on Windows Azure? How can I watch log for assemblies which are using now on Windows Azure?

like image 962
Pavel F Avatar asked Aug 26 '11 12:08

Pavel F


People also ask

What is Fusion Log Viewer?

The Assembly Binding Log Viewer, or "Fusion Log Viewer" will tell the CLR to load assembling binding/loading activities to a folder, then let you see them.

How do I open Fuslogvw EXE?

You must run fuslogvw.exe with administrator privileges. This tool is automatically installed with Visual Studio. To run the tool, use Visual Studio Developer Command Prompt or Visual Studio Developer PowerShell with administrator credentials. The viewer displays an entry for each failed assembly bind.

What is Fuslogvw EXE?

Also known as the Fusion Log or Assembly Binding Log Viewer. This tool is installed as part of Visual Studio and is not available otherwise. This displays details for failed assemby binds or missing dependencies.


1 Answers

If you can RDP to the instance, then you can use the fusion log viewer just as you would on your local machine. Simply copy the following two files to the Azure instance.

  1. FUSLOGVW.exe
  2. flogvwrc.dll

These files can be found on your local machine (if you've got the windows SDK installed) in:

C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\1033

Obviously, some sections of that path will be dependent on your windows and .net versions.

As Jeremy said, any changes you make to the VM whilst RDPed, will be wiped off if you restart your service.

like image 77
Sam Shiles Avatar answered Sep 21 '22 21:09

Sam Shiles