我使用dotnet core framwork创建了一个CLI工具,我想从控制台运行它:
INSERT INTO App.settings (user_id, layout, updated_at)
VALUES (99, 'horizontal', '2015-09-15 04:01:04');
我现在通过转到dll文件所在的位置来运行它:
$ candyapp --arg1 some-value
任何人都可以帮我安装我的应用程序并在我的Mac上使用它吗?
答案 0 :(得分:1)
使用dotnet应用程序的run命令行args。
dotnet run [-c|--configuration] [-f|--framework] [--force] [--launch-profile] [--no-build] [--no-dependencies] [--no-launch-profile] [--no-restore] [-p|--project] [--runtime] [[--] [application arguments]]
有关详细信息,请参阅dotnet cli
答案 1 :(得分:0)
dotnet run --project <Your .csproj file path>