.net core - dotnet run attempts to run from a nonexistent path -
trying run project on ubuntu 16.04 server, error:
$ dotnet -v run telemetry is: enabled project twitchbotcommons (.netcoreapp,version=v1.1) compiled. skipping compilation. project ohbot-core (.netcoreapp,version=v1.1) compiled. skipping compilation. running /home/ventic/ohbot-core/ohbot-core/bin/debug/netcoreapp1.1/ubuntu.16.04-x64/ohbot-core --additionalprobingpath /home/ventic/.nuget/packages no such file or directory
files under bin after project compiled.
$ tree bin bin └── debug └── netcoreapp1.1 ├── ohbot-core.deps.json ├── ohbot-core.dll ├── ohbot-core.pdb ├── twitchbotcommons.dll └── twitchbotcommons.pdb $ dotnet --version 1.0.0-preview2-1-003177
project.json
{ "dependencies": { "newtonsoft.json": "9.0.1", "system.collections.specialized": "4.3.0", "microsoft.netcore.app": "1.1.0", "microsoft.aspnetcore.websockets": "1.0.0", "twitchbotcommons": "*" }, "frameworks": { "netcoreapp1.1": {} }, "runtimes": { "win": {}, "ubuntu.16.04-x64": {}, "ubuntu.16.10-x64": {}, "debian.8-x64": {} } }
why dotnet core outputting project in different directory attempts run from? how can fix this?
Comments
Post a Comment