-
Notifications
You must be signed in to change notification settings - Fork 429
Description
Hello Mark
Thank you so much for this really great and huge starter! 🥇 Its an amazing bundle of technologies i'm interested in.
I had a little issue after calling npm install && npm run build:dev && dotnet restore
on my mac in the macOS-Terminal:
MSBUILD : error MSB1011: Specify which project or solution file to use because this folder contains more than one project or solution file.
its because of the docker project i think..
so i did a manual dotnet restore Asp2017.csproj > that worked fine!
After calling the [Development] Debug TypeScript - Launch via F5 in Visual Studio Code, the same message appeared in my Console Log. So edited task.json - it looks now like this:
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "0.1.0", "command": "dotnet", "isShellCommand": true, "args": [], "tasks": [ { "taskName": "build", "args": ["ASP2017.csproj"], "isBuildCommand": true, "showOutput": "silent", "problemMatcher": "$msCompile" } ] }
Everything is working fine now!
is this correct? would you do it in another way?
Thank you so much! 👍 👍 👍
Greetings - Linus