Where is the Assembly in Visual Web Developer 2005 (Express Edition)

  • Thread starter Thread starter NW Technicals
  • Start date Start date
N

NW Technicals

Hi I have built an Asp.net based applicaiton using webdeveloper and wanted
to run the FxCOP to do static analysis unable to find its assembly.

Any help would be greatly appreciated.
 
Put this in your Page Load event and then run the page:

Response.Write(System.Reflection. _
Assembly.GetExecutingAssembly.Location.ToString)

You should see the path and the DLL.

Ken
Microsoft MVP [ASP.NET]
 
Back
Top