Skip to content

Commit 30f0713

Browse files
update readme file
1 parent c878a03 commit 30f0713

File tree

22,519 files changed

+8019
-4238845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

22,519 files changed

+8019
-4238845
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"ms-azuretools.vscode-azurefunctions"
4+
]
5+
}

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Node Functions",
6+
"type": "node",
7+
"request": "attach",
8+
"port": 9229,
9+
"preLaunchTask": "func: host start"
10+
}
11+
]
12+
}

.vscode/settings.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"dotnet.defaultSolution": "BlazorApp.sln"
3-
}
2+
"dotnet.defaultSolution": "BlazorApp.sln",
3+
"azureFunctions.deploySubpath": "Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api",
4+
"azureFunctions.postDeployTask": "npm install (functions)",
5+
"azureFunctions.projectLanguage": "TypeScript",
6+
"azureFunctions.projectRuntime": "~4",
7+
"debug.internalConsoleOptions": "neverOpen",
8+
"azureFunctions.preDeployTask": "npm prune (functions)"
9+
}

.vscode/tasks.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "func",
6+
"label": "func: host start",
7+
"command": "host start",
8+
"problemMatcher": "$func-node-watch",
9+
"isBackground": true,
10+
"dependsOn": "npm build (functions)",
11+
"options": {
12+
"cwd": "${workspaceFolder}/Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api"
13+
}
14+
},
15+
{
16+
"type": "shell",
17+
"label": "npm install (functions)",
18+
"command": "npm install",
19+
"options": {
20+
"cwd": "${workspaceFolder}/Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api"
21+
}
22+
},
23+
{
24+
"type": "shell",
25+
"label": "npm prune (functions)",
26+
"command": "npm prune --production",
27+
"dependsOn": "npm build (functions)",
28+
"problemMatcher": [],
29+
"options": {
30+
"cwd": "${workspaceFolder}/Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api"
31+
}
32+
},
33+
{
34+
"type": "shell",
35+
"label": "npm clean (functions)",
36+
"command": "npm run clean",
37+
"dependsOn": "npm install (functions)",
38+
"options": {
39+
"cwd": "${workspaceFolder}/Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api"
40+
}
41+
},
42+
{
43+
"type": "shell",
44+
"label": "npm build (functions)",
45+
"command": "npm run build",
46+
"dependsOn": "npm install (functions)",
47+
"problemMatcher": "$tsc",
48+
"options": {
49+
"cwd": "${workspaceFolder}/Build Serverless APIs with Azure Functions\\mslearn-build-api-azure-functions\\api"
50+
}
51+
}
52+
]
53+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Build Serverless APIs with Azure Functions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit dfb0a610e68c5eb7fa8384e4fc7c51782f8fb173

0 commit comments

Comments
 (0)