using Microsoft.AspNetCore.Mvc; using System.Reflection; namespace IoTDameon.Controllers { public class HomeController : Controller { public IActionResult Index() { return GetVersion(); } public IActionResult GetVersion() { return Content(Assembly.GetEntryAssembly().GetCustomAttribute().InformationalVersion); } } }