Parcourir la source

Add version information to MQTTnet.Server.

release/3.x.x
Christian Kratky il y a 5 ans
Parent
révision
ed06ea6bc9
1 fichiers modifiés avec 18 ajouts et 0 suppressions
  1. +18
    -0
      Source/MQTTnet.Server/Controllers/ServerController.cs

+ 18
- 0
Source/MQTTnet.Server/Controllers/ServerController.cs Voir le fichier

@@ -0,0 +1,18 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.Reflection;

namespace MQTTnet.Server.Controllers
{
[Authorize]
[ApiController]
public class ServerController : Controller
{
[Route("api/v1/server/version")]
[HttpGet]
public ActionResult<string> GetVersion()
{
return Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion;
}
}
}

Chargement…
Annuler
Enregistrer