* HomeController.cs: Gets infos about all used assemblies
* AssemblyInfo.aspx: Makes a little clearer what's displayed in there
This commit is contained in:
parent
495f859243
commit
7558e11bd6
2 changed files with 26 additions and 3 deletions
|
|
@ -1,7 +1,10 @@
|
|||
<%@ Page Title="Yavsc - indexe" Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<System.Reflection.AssemblyName>>" MasterPageFile="~/Models/App.master"%>
|
||||
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
||||
<p><%= GetType().Assembly.FullName %></p>
|
||||
<p>
|
||||
Running assembly :
|
||||
<%= GetType().Assembly.FullName %></p>
|
||||
<p>
|
||||
Assemblies referenced by the controllers :
|
||||
<ul>
|
||||
<% foreach (System.Reflection.AssemblyName item in Model) { %>
|
||||
<li><%= item.FullName %></li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue