mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-13 16:44:32 +00:00
azure func vs code files
This commit is contained in:
parent
5a3b47eef7
commit
ed70c6058c
6
.vscode/extensions.json
vendored
Normal file
6
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-azuretools.vscode-azurefunctions",
|
||||||
|
"ms-dotnettools.csharp"
|
||||||
|
]
|
||||||
|
}
|
||||||
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Attach to .NET Functions",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "attach",
|
||||||
|
"processId": "${command:azureFunctions.pickProcess}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
@ -1,3 +1,8 @@
|
|||||||
{
|
{
|
||||||
"dotnet.defaultSolution": "sk-dev-team.sln"
|
"dotnet.defaultSolution": "sk-dev-team.sln",
|
||||||
|
"azureFunctions.deploySubpath": "sk-azfunc-server/bin/Release/net7.0/publish",
|
||||||
|
"azureFunctions.projectLanguage": "C#",
|
||||||
|
"azureFunctions.projectRuntime": "~4",
|
||||||
|
"debug.internalConsoleOptions": "neverOpen",
|
||||||
|
"azureFunctions.preDeployTask": "publish (functions)"
|
||||||
}
|
}
|
||||||
81
.vscode/tasks.json
vendored
Normal file
81
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "clean (functions)",
|
||||||
|
"command": "dotnet",
|
||||||
|
"args": [
|
||||||
|
"clean",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"type": "process",
|
||||||
|
"problemMatcher": "$msCompile",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/sk-azfunc-server"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "build (functions)",
|
||||||
|
"command": "dotnet",
|
||||||
|
"args": [
|
||||||
|
"build",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"type": "process",
|
||||||
|
"dependsOn": "clean (functions)",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": "$msCompile",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/sk-azfunc-server"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "clean release (functions)",
|
||||||
|
"command": "dotnet",
|
||||||
|
"args": [
|
||||||
|
"clean",
|
||||||
|
"--configuration",
|
||||||
|
"Release",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"type": "process",
|
||||||
|
"problemMatcher": "$msCompile",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/sk-azfunc-server"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "publish (functions)",
|
||||||
|
"command": "dotnet",
|
||||||
|
"args": [
|
||||||
|
"publish",
|
||||||
|
"--configuration",
|
||||||
|
"Release",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"type": "process",
|
||||||
|
"dependsOn": "clean release (functions)",
|
||||||
|
"problemMatcher": "$msCompile",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/sk-azfunc-server"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "func",
|
||||||
|
"dependsOn": "build (functions)",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}/sk-azfunc-server/bin/Debug/net7.0"
|
||||||
|
},
|
||||||
|
"command": "host start",
|
||||||
|
"isBackground": true,
|
||||||
|
"problemMatcher": "$func-dotnet-watch"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user