문제

Is there anyway to get the version number into the swagger UI?

So we can let developers know what version each deployment is at?

도움이 되었습니까?

해결책

This is possible in the latest version of ServiceStack, you just set the ServiceStack API version in your AppHost thus :

public override void Configure(Container container)
{
     SetConfig(new HostConfig
     {
         ApiVersion = "1.1"
     });
{

This will then be picked up by the Swagger-Ui

다른 팁

If you are looking to display the version for the API as a whole, there is support for this in Swagger UI as noted here. Additionally, this support made it into ServiceStack and will display properly on the bottom of the screen the same as the Swagger example.

Unfortunately, there isn't yet support for accessing the ApiVersion property in your code as seen here. This property isn't exposed in version 3 or 4 of ServiceStack or even in the new Model and Property filters on the Swagger feature. Accessing this would require a pull request to expose it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top