Skip to content

Commit 1ab5b10

Browse files
committed
minor changes in api-versioning blog post document
1 parent 0492dd8 commit 1ab5b10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

blog-posts/en/api-versioning.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ASP.NET Core API Versioning
1+
# ASP.NET Core API Versioning in ASP.NET Zero
22

33
APIs are the backbone of modern applications. As your API evolves, adding new features and updating old ones becomes inevitable. This is where API versioning comes into play. But why is API versioning important, and how do we implement it in ASP.NET Core?
44

@@ -14,7 +14,7 @@ There are several reasons you might need to make changes:
1414
- **Modifying accepted HTTP methods:** Though rare, there might be situations where you adjust which HTTP methods (GET, POST, etc.) an action can handle.
1515
- **Changing HTTP status codes:** The API might return different status codes to reflect new error handling or success scenarios more accurately.
1616

17-
## How to Implement API Versioning in ASP.NET Core
17+
## How to Implement API Versioning in ASP.NET Zero
1818

1919
There is a strong library for API versioning in ASP.NET Core called `Asp.Versioning.Mvc.ApiExplorer`.
2020

@@ -24,7 +24,7 @@ There is a strong library for API versioning in ASP.NET Core called `Asp.Version
2424
dotnet add package Asp.Versioning.Mvc.ApiExplorer
2525
```
2626

27-
### Step 2: ASP.NET Zero Configuration
27+
### Step 2: Configuration
2828

2929
In ASP.NET Zero we need to add some classes to configure API versioning.
3030

0 commit comments

Comments
 (0)