You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 14, 2024. It is now read-only.
Could not execute because the specified command or file was not found.
Possible reasons for this include:
* You misspelled a built-in dotnet command.
* You intended to execute a .NET Core program, but dotnet-execute does not exist.
* You intended to run a global tool, but a dotnet-prefixed executable with this name could not be found on the PATH.
This is on Windows 10 (and I ran dotnet tool install --global dotnet-tool-exec) before this
When trying to run
dotnet execute testwith the following config:{ "name": "app", "env": {}, "commands": { "build": [ "dotnet build" ], "test": [ "dotnet test" ] } }I get this error:
This is on Windows 10 (and I ran
dotnet tool install --global dotnet-tool-exec) before this