* HomeController.cs: Gets infos about all used assemblies

* AssemblyInfo.aspx: Makes a little clearer what's displayed in there
This commit is contained in:
Paul Schneider
2015-01-27 13:05:14 +01:00
parent 495f859243
commit 7558e11bd6
2 changed files with 26 additions and 3 deletions

View File

@ -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>