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