Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I suspect I'm missing something from my launch.json
From VS Code, running Umbraco (F5)
with a folder structure like this
- Solution Folder - .vscode - launch.json - tasks.json - Website - App_data - bin - umbraco - Views - wwwroot
using "program": "${workspaceFolder}/Website/bin/Debug/net6.0/Website.dll",
"program": "${workspaceFolder}/Website/bin/Debug/net6.0/Website.dll",
Umbraco runs, but adds the "App_data", "umbraco", "Views", "wwwroot" into the solution folder, so I now have this:
- Solution Folder - .vscode - launch.json - tasks.json - App_data - umbraco - Views - Website - App_data - bin - umbraco - Views - wwwroot - wwwroot
I found the problem... I needed to change
"cwd": "${workspaceFolder}",
to
"cwd": "${workspaceFolder}\\Website",
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Running Umbraco in VSCode from Solution Folder
I suspect I'm missing something from my launch.json
From VS Code, running Umbraco (F5)
with a folder structure like this
using
"program": "${workspaceFolder}/Website/bin/Debug/net6.0/Website.dll",
Umbraco runs, but adds the "App_data", "umbraco", "Views", "wwwroot" into the solution folder, so I now have this:
I found the problem... I needed to change
"cwd": "${workspaceFolder}",
to
"cwd": "${workspaceFolder}\\Website",
is working on a reply...