Skip to content

Commit

Permalink
Formatting and extensions update
Browse files Browse the repository at this point in the history
  • Loading branch information
jongio committed Oct 31, 2023
1 parent 4d5a276 commit b161149
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 75 deletions.
18 changes: 10 additions & 8 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,22 @@
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"GitHub.vscode-github-actions",
"esbenp.prettier-vscode",
"ipedrazas.kubernetes-snippets",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-azurecontainerapps",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-azurestorage",
"ms-azuretools.vscode-azurecontainerapps",
"ms-azuretools.vscode-docker",
"ms-dotnettools.blazorwasm-companion",
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp",
"ms-dotnettools.vscode-dotnet-runtime",
"ms-dotnettools.blazorwasm-companion",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-kubernetes-tools.aks-devx-tools",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ipedrazas.kubernetes-snippets",
"redhat.vscode-yaml",
"GitHub.vscode-github-actions",
"esbenp.prettier-vscode"
"redhat.vscode-yaml"
]
}
},
Expand Down
37 changes: 19 additions & 18 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp",
"ms-azuretools.vscode-docker",
"ms-azuretools.vscode-azurestorage",
"ms-azuretools.vscode-azurecontainerapps",
"ms-dotnettools.csdevkit",
"ms-dotnettools.vscode-dotnet-runtime",
"ms-dotnettools.blazorwasm-companion",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-kubernetes-tools.aks-devx-tools",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ipedrazas.kubernetes-snippets",
"redhat.vscode-yaml",
"GitHub.vscode-github-actions",
"esbenp.prettier-vscode"
]
}
"recommendations": [
"GitHub.vscode-github-actions",
"esbenp.prettier-vscode",
"ipedrazas.kubernetes-snippets",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-azurecontainerapps",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-azurestorage",
"ms-azuretools.vscode-docker",
"ms-dotnettools.blazorwasm-companion",
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp",
"ms-dotnettools.vscode-dotnet-runtime",
"ms-kubernetes-tools.aks-devx-tools",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"redhat.vscode-yaml"
]
}
101 changes: 52 additions & 49 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,54 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Frontend: Blazor client",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}//app/backend/bin/Debug/net8.0/ClientApp.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"envFile": "${input:dotEnvFilePath}"
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Frontend: Blazor client",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/app/backend/bin/Debug/net8.0/ClientApp.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
{
"name": "Backend: Minimal API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/app/backend/bin/Debug/net8.0/MinimalApi.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole",
"envFile": "${input:dotEnvFilePath}"
}
],
"inputs": [
{
"id": "dotEnvFilePath",
"type": "command",
"command": "azure-dev.commands.getDotEnvFilePath"
}
],
"compounds": [
{
"name": "Full Stack",
"configurations": ["Backend: Minimal API", "Frontend: Blazor client"]
}
]
}
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"envFile": "${input:dotEnvFilePath}"
},
{
"name": "Backend: Minimal API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/app/backend/bin/Debug/net8.0/MinimalApi.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole",
"envFile": "${input:dotEnvFilePath}"
}
],
"inputs": [
{
"id": "dotEnvFilePath",
"type": "command",
"command": "azure-dev.commands.getDotEnvFilePath"
}
],
"compounds": [
{
"name": "Full Stack",
"configurations": [
"Backend: Minimal API",
"Frontend: Blazor client"
]
}
]
}

0 comments on commit b161149

Please sign in to comment.