try to save to db
parent
84dbcbb1d1
commit
ab5ab399b0
@ -1,41 +1,30 @@
|
|||||||
{
|
{
|
||||||
// Use IntelliSense to learn about possible attributes.
|
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
|
||||||
// Hover to view descriptions of existing attributes.
|
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": ".NET Core Launch (console)",
|
"name": ".NET Core Launch (web)",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
"request": "launch",
|
|
||||||
"WARNING01": "*********************************************************************************",
|
|
||||||
"WARNING02": "The C# extension was unable to automatically decode projects in the current",
|
|
||||||
"WARNING03": "workspace to create a runnable launch.json file. A template launch.json file has",
|
|
||||||
"WARNING04": "been created as a placeholder.",
|
|
||||||
"WARNING05": "",
|
|
||||||
"WARNING06": "If OmniSharp is currently unable to load your project, you can attempt to resolve",
|
|
||||||
"WARNING07": "this by restoring any missing project dependencies (example: run 'dotnet restore')",
|
|
||||||
"WARNING08": "and by fixing any reported errors from building the projects in your workspace.",
|
|
||||||
"WARNING09": "If this allows OmniSharp to now load your project then --",
|
|
||||||
"WARNING10": " * Delete this file",
|
|
||||||
"WARNING11": " * Open the Visual Studio Code command palette (View->Command Palette)",
|
|
||||||
"WARNING12": " * run the command: '.NET: Generate Assets for Build and Debug'.",
|
|
||||||
"WARNING13": "",
|
|
||||||
"WARNING14": "If your project requires a more complex launch configuration, you may wish to delete",
|
|
||||||
"WARNING15": "this configuration and pick a different template using the 'Add Configuration...'",
|
|
||||||
"WARNING16": "button at the bottom of this file.",
|
|
||||||
"WARNING17": "*********************************************************************************",
|
|
||||||
"preLaunchTask": "build",
|
"preLaunchTask": "build",
|
||||||
"program": "${workspaceFolder}/bin/Debug/<insert-target-framework-here>/<insert-project-name-here>.dll",
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/bin/Debug/net7.0/Gremlin_BlazorServer",
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
"console": "internalConsole",
|
"stopAtEntry": false,
|
||||||
"stopAtEntry": false
|
"requireExactSource": false,
|
||||||
|
"serverReadyAction": {
|
||||||
|
"action": "openExternally",
|
||||||
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||||||
},
|
},
|
||||||
{
|
"env": {
|
||||||
"name": ".NET Core Attach",
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
"type": "coreclr",
|
"ASPNETCORE_URLS": "https://localhost:5000"
|
||||||
"request": "attach"
|
},
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/Views": "${workspaceFolder}/Views"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "build",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "shell",
|
||||||
|
"args": [
|
||||||
|
"build",
|
||||||
|
// Ask dotnet build to generate full paths for file names.
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"group": "build",
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "silent"
|
||||||
|
},
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue