소스 검색

Add version information to MQTTnet.Server.

release/3.x.x
Christian Kratky 5 년 전
부모
커밋
ed06ea6bc9
1개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. +18
    -0
      Source/MQTTnet.Server/Controllers/ServerController.cs

+ 18
- 0
Source/MQTTnet.Server/Controllers/ServerController.cs 파일 보기

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

불러오는 중...
취소
저장