C# publishing an .exe and sending params to it using cmd(C# 发布 .exe 并使用 cmd 向其发送参数)
问题描述
我很确定这是基本的,但我只是没有成功做到这一点我正在尝试创建一个控制台应用程序,它可以通过获取少量参数来执行 ABC
i am pretty sure this is basic but i just dont success to do this i am trying to create a console application that would do ABC by getting few arguments
首先,我正在尝试运行这么简单的东西
for start i am trying to run something as simple as that
static void Main(string[] args)
{
foreach (var s in args)
{
Console.WriteLine(s);
}
Console.ReadLine();
}
当我发布它时,它是一个clickonce"项目像 NAME.application 而不是 NAME.exe
when i publish it it comes at as a 'clickonce' project like NAME.application instead of NAME.exe
另外,当我尝试使用 XYZ 参数执行它时,就像在命令行中的同一文件夹中尝试一样
also , when i am trying to go execute it with XYZ parms like trying in same folder in command line
NAME.application agr1 agr2 agr3
它只是用空控制台打开应用程序:(
it just opens the application with empty console :(
推荐答案
.application
文件不是您的可执行文件,而是用于部署的文件.所以在本地运行程序时,还是应该运行.exe.
文件.在此处查看有关命令行参数和 ClickOnce 的一些信息:在 Click Once 应用程序中模拟命令行参数"
The .application
file is not your executable file, but a file used for the deployment. So when running the program locally, you should still run the .exe.
file. Check here for some info about command line arguments and ClickOnce: "Simulating command line parameters in Click Once applications"
这篇关于C# 发布 .exe 并使用 cmd 向其发送参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# 发布 .exe 并使用 cmd 向其发送参数


- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01