Skip to content

Commit ddff340

Browse files
committed
feat: update .devcontainer and README files for .NET 9 compatibility; add SQL Server extension image for Visual Studio Code
1 parent bf487a2 commit ddff340

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"version": "latest"
1313
},
1414
"ghcr.io/devcontainers/features/dotnet:2": {
15-
"version": "8.0"
15+
"version": "9.0"
1616
},
1717
"ghcr.io/devcontainers-extra/features/kubectl-asdf:2": {
1818
"version": "latest"
@@ -48,4 +48,4 @@
4848
]
4949
}
5050
}
51-
}
51+
}

04-cloud/azure/paas/01-sql-database/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ az sql server firewall-rule create `
8585

8686
## 🔗 Paso 4: Verificar la conexión (Opcional)
8787

88-
Con [Azure Data Studio](https://azure.microsoft.com/es-es/products/data-studio) puedes conectarte a tu base de datos para verificar que se creó correctamente. Recuerda que deberás permitir el acceso desde tu IP en las reglas de firewall.
88+
Con la extensión de SQL Server para Visual Studio Code, puedes conectarte a tu servidor SQL y verificar que todo esté funcionando correctamente.
89+
90+
![Probar conexión con la extensión de SQL Server para Visual Studio Code](../images/Probar%20conexión%20con%20la%20extensión%20de%20SQL%20Server%20para%20Visual%20Studio%20Code.png)
8991

9092
## ➡️ Siguiente paso
9193

04-cloud/azure/paas/02-app-service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Ahora que tienes el plan, crea la web app:
6767
```bash
6868
az webapp create \
6969
--name $WEB_API_NAME \
70-
--runtime "dotnet:8" \
70+
--runtime "dotnet:9" \
7171
--resource-group $RESOURCE_GROUP \
7272
--plan $APP_SVC_PLAN_NAME
7373
```

04-cloud/azure/paas/03-static-web-apps/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Necesitas un **fork** del repositorio de Tour of Heroes Angular:
2424
```bash
2525
# Static Web App variables
2626
WEB_APP_NAME="tour-of-heroes-web-$RANDOM"
27-
GITHUB_USER_NAME="<YOUR-GITHUB-USER-NAME>"
27+
GITHUB_USER_NAME="0gis0"
2828
```
2929

3030
**En Windows PowerShell:**
@@ -47,7 +47,7 @@ az staticwebapp create \
4747
--location "westeurope" \
4848
--branch main \
4949
--app-location "/" \
50-
--output-location "dist/angular-tour-of-heroes" \
50+
--output-location "dist/angular-tour-of-heroes/browser" \
5151
--login-with-github
5252
```
5353

128 KB
Loading

0 commit comments

Comments
 (0)