I have a AspNetZero .NetCore + Angular project and I need to implement api versioning to the project for backwards compatibility. I followed a few examples online, but they either don't specify all the steps, or are specific to mvc, and this project uses the AppService pattern. If any one has successfully managed to implement api versioning in a AspNetZero project, I would really appreciate your help.
I'm currently at the swagger page showing two version, but for v1, I get an AmbiguousMatchException and for v2 swagger can't find the v2 file, so I assume it's not getting generated.
In my Application project, I changed the current AppService's namespace to .v1, and created a new AppService with namespace v2, that inherits the old one, and overrides 1 method which will be the v2.
The aim is to be able to call both methods once it's done with i.e: (http://localhost:9901/api/services/app/Equities/Get_Snapshot or http://localhost:9901/api/services/v1/Equities/Get_Snapshot) and http://localhost:9901/api/services/v2/Equities/Get_Snapshot
Open
Startup.cs
inYOURCOMPANY.Web.Host
project.In the
ConfigureServices
method, scroll down and findservices.AddSwaggerGen ...
Implement the following code:
Next, in the
Configure
method, scroll down and findapp.UseSwaggerUI ...
Open
appsettings.json
inYOURCOMPANY.Web.Host
and add a new endpoint configuration variable in the"App"
field:Implement the following code:
Now you can implement APIs in
V2
group by addingApiExplorerSettings
attribute in yourYOURCOMPANY.Application
project; let's assume you have a service named (TestAppService),Then implement your methods (APIs) in the below namespace, and simply open your Swagger UI and test it.