Components to show informations about ASP .NET Web Apps (MVC and Web API)
Currently supporting only information about app version. More to come...
-
Reference the AppsInfo.HttpHandlers.dll assembly on your web app.
-
Adds the httpHandler to web.config:
<httpHandlers>
<add verb="GET" path="/AppsInfo/*/*" type="AppsInfo.HttpHandlers.AppsInfoHttpHandler, AppsInfo.HttpHandlers" />
</httpHandlers>
PM> Install-Package AppsInfo
AppsInfo will try to identify your web app assembly, but in some case this is impossible, so just help it adding this key on AppSettings:
<add key="AppsInfo:AssemblyName" value="your web app assembly name" />
- Access the the address below in your web app:
- Json: http://<your web app url>/AppsInfo/Version/json
- Png: http://<>your web app url>/AppsInfo/Version/png
- Html: http://<your web app url>/AppsInfo/Version/html
Create a fork of AppsInfo. Did you change it? Submit a pull request.
Licensed under the Apache License, Version 2.0 (the "License").