2

Does anyone know where ServiceStack is referencing TagAttribute from. According to ServiceStack's OpenAPI documentation a route can be marked as [Tag("Core Requests")] to categorize the routes but I cannot locate where TagAttribute is actually defined. I am using ServiceStack v4.5.8.

http://docs.servicestack.net/openapi

Mayank
  • 8,777
  • 4
  • 35
  • 60

1 Answers1

2

The [Tag] attribute was added in the latest v4.5.10 release so you'll need to upgrade to v4.5.10+ to use it.

mythz
  • 141,670
  • 29
  • 246
  • 390
  • Thanks. Still not sure what the problem with v4.5.10 is as after upgrading to this the whole SS API stops working. Can't get to any SS endpoint. Also swagger won't work. – Mayank Jun 15 '17 at 15:00
  • @Mayank if you're using Signed DLLs you'll need to use the Myget release, it's a known issue were going to deploy a quick fix on NuGet today for – mythz Jun 15 '17 at 15:02
  • Ok, that makes sense. Thanks for the update. When do you think the update will be available today? – Mayank Jun 15 '17 at 16:06
  • @Mayank v4.5.12 is now available on NuGet – mythz Jun 15 '17 at 20:26
  • 1
    New build fixed the issue, Thanks – Mayank Jun 16 '17 at 00:16