Assembly Viewer and Assembly Conflict Viewer in ASP.NET


Everyone knows about Assembly. But, very few knows about ILDASM tool, which is present in .NET Framework. ILDASM is nothing but Intermediate Language Disassembler. It is used to exploit any .NET dll or exe. By using this tool, we can see manifest,resources.....This tool is available in C:\WINNT\Microsoft.NET\Framework\v1.1.4322\. We can access this from VS.NET 2003 Command Prompt(present in VS Tools). Just drag any exe or dll onto that tool, to view its attributes. But, that tool won't show any conflicts occurs in referenced assemblies.

So, I created this Web application which will show Assembly attributes and Conflicts.

A conflict may occur, if referenced assembly is not present or problem in culture or version.

So, if a assembly has to be loaded successfully means, all referenced assemblies must be present with specified culture and version.

This application will show all  referenced assemblies of an Assembly. It will also show conflicts present in referenced assemblies. We can even see attributes of referenced assembly.

I created this application in VS 2003 using C#.

First, create a web application in VS 2003 and name it as AssemblyViewer. Next, design UI as shown in below figure:

I placed a File control, to select an assembly. We can add a file control, by adding this to HTML:

<input id="fileuploader" style="Z-INDEX: 101; LEFT: 48px; POSITION: absolute; TOP: 56px" type="file" runat="server" NAME="fileuploader">

And add  this attribute to form tag:

encType="multipart/form-data"

Next, to show Button in DataGrid, add this DataGrid tag in HTML view:

<Columns>

   <asp:TemplateColumn>

      <ItemTemplate>

         <asp:Button ID="button22" Runat="server" Text="View Details" Width="70"

         CommandName="ShowDetails"></asp:Button>

      </ItemTemplate>

   </asp:TemplateColumn>

</Columns>

Next place remaining labels and listbox controls on the page.

Next goto Page_load event and add this code there:

ListBox1.Items.Clear();

Label4.Text=string.Empty;

This will clear all previous errors attributes of Selected Assembly(selected from Grid).

Next goto Click event of View Details and add this:
  

try

{

          //To Get Selected Assembly Path...

          string FileExt=fileuploader.PostedFile.FileName.Substring(fileuploader.PostedFile.FileName.LastIndexOf(".")+1);

          //To Check for Extension .dll...

          if(FileExt.ToLower()!="dll")

          {

                   Literal1.Text="<b>"+"Select a Valid File Format with Extension .dll"+"</b>";

                   return;

          }

          //To Store Selected assembly Name and Path...

          string selectedfile=fileuploader.PostedFile.FileName.ToString();

          string filepath    =Path.GetDirectoryName(selectedfile);

          Assembly assembly = Assembly.LoadFrom(selectedfile);

          Label2.Text =Path.GetFileName(fileuploader.PostedFile.FileName);

          assemblypath.Text =assembly.Location;

          StreamWriter writer;

          writer= new StreamWriter("c:\\assemblies.xml",false);

          writer.Write("<?xml version=\"1.0\"?>");

          writer.Write("<assemblies>");

          //To Get Attributes of each Referenced Assembly...

          foreach (AssemblyName  assemblynames in assembly.GetReferencedAssemblies())

          {

                   //To Save Attributes of each Referenced Assembly in a Temporary xml file...

                   string[] assemblies = assemblynames.FullName.ToString().Split(',');

                   writer.Write("<assembly>");   

                   string assemblyname =assemblies[0];

                   string version =assemblies[1].ToString().Substring(assemblies[1].ToString().LastIndexOf('=')+1);

                   string culture =assemblies[2].ToString().Substring(assemblies[1].ToString().LastIndexOf('=')+1);

                   string publickeytoken =assemblies[3].ToString().Substring(assemblies[3].ToString().LastIndexOf('=')+1);

                    writer.Write("<assemblyname>"+assemblyname+"</assemblyname>");

                    writer.Write("<version>"+version+"</version>");

                    writer.Write("<culture>"+culture+"</culture>");

                    writer.Write("<publickeytoken>"+publickeytoken+"</publickeytoken>");

                    writer.Write("</assembly>");

          }

          writer.Flush();

          writer.Close();

          File.Copy("c:\\assemblies.xml","c:\\temp1.xml",true);

          StreamWriter writer1=File.AppendText("c:\\temp1.xml");

          writer1.Write("</assemblies>");

          writer1.Close();

          //To Show  Attributes of each Referenced Assemblies in DataGrid...

          DataSet ds=new DataSet();

          ds.ReadXml("c:\\temp1.xml");

          DataGrid1.DataSource=ds;

          DataGrid1.DataBind();

          File.Delete("c:\\assemblies.xml");

          File.Delete("c:\\temp1.xml");

}

catch(Exception ex)

{

          //To catch Exception,if file is not in Valid Format...

          Literal1.Text="<b>"+"The format of the file is invalid."+"</b>";

}

This will get attributes of each referenced assembly and save in xml file.Then, we are showing that data in DataGrid.

Next go to Click event of Show Conflicts  and add this code as shown in below figure:

This will see for any conflicts in version or file missing for Selected Assembly(selected from file control), and will display error list and markers for that conflict assemblies in DataGrid.

Finally go to DataGrid  DataGrid1_ItemCommand event and add this code as shown below:

This will show attributes of Selected Assembly(selected from Grid).

Final screen, will be like this:

This screen will show conflicts as red mark and description.

This application will show errror messages, if referenced assembly is missing or any mismatch in version. We can extend this ,to show culture conflicts also.

This application assumes selected assembly and its referenced assemblies are in same folder.

By using this application, we can see an assembly attributes and conflicts.

I  am attaching code for reference.

I hope this will be useful for all.

Up Next
    Ebook Download
    View all
    Learn
    View all