The package can be installe within a VB.NET project and it inserts a C# file which does not work at all.
The C# file is just simple bootstrapping code to get you started. Alternatively, you can just install the "Core" package (which doesn't insert any additional code) ...
Install-Package Swashbuckle.Core
And manually add the following line, or rather it's VB.Net equivalent, somewhere during app startup
Swashbuckle.Bootstrapper.Init(GlobalConfiguration.Configuration)
Granted, it would be ideal if the full "Swashbuckle" package detected the language on install and inserted a VB version of SwaggerConfig but it's just not a use-case that has come up before now.
I'm not very familiar with VB.NET ... would you be interested in submitting this as a pull request?
Closing due to inactivity - only so many hours in the day!
Will gladly accept through a PR though ...
If anyone comes across this on Google for help with VB.NET.
Imports System.Web.Http
Imports WebActivatorEx
Imports Swashbuckle.Application
<Assembly: PreApplicationStartMethod(GetType(SwaggerConfig), "Register")>
Public Class SwaggerConfig
Public Shared Sub Register()
Dim thisAssembly = GetType(SwaggerConfig).Assembly
GlobalConfiguration.Configuration.EnableSwagger(Function(c) c.SingleApiVersion("v1", "Your API Name")).EnableSwaggerUi()
End Sub
End Class
This is the bare minimum. You can follow the annotations in the SwaggerConfig.cs file as well as the readme for any additional options you may want to configure.
I've added that file to my project, however I am getting this error:
Method not found: 'Swashbuckle.Application.SwaggerEnabledConfiguration Swashbuckle.Application.HttpConfigurationExtensions.EnableSwagger(System.Web.Http.HttpConfiguration, System.Action`1
I'm referencing this this library version: Swashbuckle.Core.5.0.0libnet40Swashbuckle.Core.dll
Update This was caused by a version mismatch of the System.Web.Http assembly referenced by my project and the Swashbuckle library.
Please just detect language and place this file renamed to .vb in project instead of the cs file.
SwaggerConfig.txt
Most helpful comment
If anyone comes across this on Google for help with VB.NET.
This is the bare minimum. You can follow the annotations in the SwaggerConfig.cs file as well as the readme for any additional options you may want to configure.