在C#命令行应用程序中包含并执行EXE
作者:互联网
因此,我找到了一个很棒的EXE命令行小应用程序(我们将其称为program.exe),该应用程序输出一些我想使用C#处理的数据.
我想知道是否有一种方法可以将program.exe打包到我的Visual Studio项目文件中,这样我就可以将编译后的应用程序交给同事,而不必将它们发送给program.exe.
任何帮助表示赞赏.
解决方法:
有几种方法可以完成此操作.首先,您应该将program.exe添加到项目中.您可以通过右键单击Visual Studio中的项目,然后选择“添加>现有项目…选择program.exe,它将出现在项目中.查看其属性,可以将“复制到输出目录”设置为“始终复制”,它将出现在应用程序旁边的输出目录中.
解决该问题的另一种方法是将其作为资源嵌入.将program.exe添加到您的项目后,将该项目的“生成操作”属性从“内容”更改为“嵌入式资源”.在运行时,您可以使用Assembly.GetManifestResourceStream提取命令行可执行文件并执行它.
private static void ExtractApplication(string destinationPath)
{
// The resource name is defined in the properties of the embedded
string resourceName = "program.exe";
Assembly executingAssembly = Assembly.GetExecutingAssembly();
Stream resourceStream = executingAssembly.GetManifestResourceStream(resourceName);
FileStream outputStream = File.Create(destinationPath);
byte[] buffer = new byte[1024];
int bytesRead = resourceStream.Read(buffer, 0, buffer.Length);
while (bytesRead > 0)
{
outputStream.Write(buffer, 0, bytesRead);
bytesRead = resourceStream.Read(buffer, 0, buffer.Length);
}
outputStream.Close();
resourceStream.Close();
}
标签:command-line,c,visual-studio 来源: https://codeday.me/bug/20191209/2097876.html