diff --git a/src/Core/RemoteRunner.cs b/src/Core/RemoteRunner.cs index 03670b0..4abf9f6 100644 --- a/src/Core/RemoteRunner.cs +++ b/src/Core/RemoteRunner.cs @@ -87,8 +87,8 @@ await AnsiConsole.Status().StartAsync($":open_file_folder: {location} :backhand_ } string[] runargs = aot - ? ["run", "-v:q", program, .. args] - : ["run", "-v:q", "-p:PublishAot=false", program, .. args]; + ? [program, "-v:q", .. args] + : [program, "-v:q", "-p:PublishAot=false", .. args]; #if DEBUG AnsiConsole.MarkupLine($":rocket: {DotnetMuxer.Path.FullName} {string.Join(' ', runargs)}"); diff --git a/src/runcs/Properties/launchSettings.json b/src/runcs/Properties/launchSettings.json index 7dc58e3..f092cef 100644 --- a/src/runcs/Properties/launchSettings.json +++ b/src/runcs/Properties/launchSettings.json @@ -19,6 +19,10 @@ "bitbucket": { "commandName": "Project", "commandLineArgs": "bitbucket.org/kzu/runcs@dev:program.cs" + }, + "vault2secrets": { + "commandName": "Project", + "commandLineArgs": "kzu/run:vault2secrets.cs" } } } \ No newline at end of file