我有一个包裹在clickonce应用程序中的应用程序exe。在C#中创建了一个控制台应用程序项目。我这样运行应用程序
static void Main(string[] args)
{
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.UseShellExecute = true;
p.StartInfo.RedirectStandardOutput = false;
p.StartInfo.FileName = "AppTest.exe";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.Start();
}
我将文件复制到Web服务器,然后转到由clickonce自动创建的url / publish.htm。我可以看到一切都按我的意愿运行,但是我想隐藏“启动应用程序”对话框和同时打开一秒钟的Windows Shell。
我该怎么做?