Skip to content

Commit b4aa2e8

Browse files
Merge pull request #218756 from anthonychu/20221117-add-dotnet7
[Static Web Apps] Add .NET 7
2 parents 3d4bfa7 + 331a9ad commit b4aa2e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/static-web-apps/apis-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following table contrasts the differences between using managed and existing
2424
| Feature | Managed Functions | Bring your own Functions |
2525
|---|---|---|
2626
| Access to Azure Functions [triggers](../azure-functions/functions-triggers-bindings.md#supported-bindings) | HTTP only | All |
27-
| Supported Azure Functions [runtimes](../azure-functions/supported-languages.md#languages-by-runtime-version)<sup>1</sup> | Node.js 12<br>Node.js 14<br>Node.js 16<br>.NET Core 3.1<br>.NET 6.0<br>Python 3.8<br>Python 3.9 | All |
27+
| Supported Azure Functions [runtimes](../azure-functions/supported-languages.md#languages-by-runtime-version)<sup>1</sup> | Node.js 12<br>Node.js 14<br>Node.js 16<br>.NET Core 3.1<br>.NET 6.0<br>.NET 7.0<br>Python 3.8<br>Python 3.9 | All |
2828
| Supported Azure Functions [hosting plans](../azure-functions/functions-scale.md) | Consumption | Consumption<br>Premium<br>Dedicated |
2929
| [Integrated security](user-information.md) with direct access to user authentication and role-based authorization data |||
3030
| [Routing integration](./configuration.md?#routes) that makes the `/api` route available to the web app securely without requiring custom CORS rules. |||

articles/static-web-apps/deploy-blazor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Together, the following projects make up the parts required to create a Blazor W
103103

104104
### Fallback route
105105

106-
The app exposes URLs like `_/counter_` and `_/fetchdata_`, which map to specific routes of the app. Since this app is implemented as a single page, each route is served the `_index.html_` file. To ensure that requests for any path return `_index.html_`, a [fallback route](./configuration.md#fallback-routes) gets implemented in the `_staticwebapp.config.json_` file found in the client project's root folder.
106+
The app exposes URLs like `/counter` and `/fetchdata`, which map to specific routes of the app. Since this app is implemented as a single page, each route is served the `index.html` file. To ensure that requests for any path return `index.html`, a [fallback route](./configuration.md#fallback-routes) gets implemented in the `staticwebapp.config.json` file found in the client project's root folder.
107107

108108
```json
109109
{
@@ -113,7 +113,7 @@ The app exposes URLs like `_/counter_` and `_/fetchdata_`, which map to specific
113113
}
114114
```
115115

116-
The json configuration ensures that requests to any route in the app return the `_index.html_` page.
116+
The json configuration ensures that requests to any route in the app return the `index.html` page.
117117

118118
## Clean up resources
119119

0 commit comments

Comments
 (0)