Changing to the correct project ref in .gitignore and .vscode/

This commit is contained in:
Elitsa Marinovska
2021-08-18 11:07:06 +02:00
parent 490c09b81e
commit 7e77454f03
3 changed files with 23 additions and 23 deletions

6
.vscode/launch.json vendored
View File

@@ -10,9 +10,9 @@
"request": "launch",
"preLaunchTask": "Dotnet build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/Umbraco.Web.UI.NetCore/bin/Debug/net5.0/Umbraco.Web.UI.NetCore.dll",
"program": "${workspaceFolder}/src/Umbraco.Web.UI/bin/Debug/net5.0/Umbraco.Web.UI.dll",
"args": [],
"cwd": "${workspaceFolder}/src/Umbraco.Web.UI.NetCore",
"cwd": "${workspaceFolder}/src/Umbraco.Web.UI",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
@@ -33,4 +33,4 @@
"processId": "${command:pickProcess}"
}
]
}
}

4
.vscode/tasks.json vendored
View File

@@ -57,11 +57,11 @@
"args": [
"watch",
"run",
"${workspaceFolder}/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj",
"${workspaceFolder}/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
}