4

我用 C# 开发了一个控制台应用程序。我现在需要创建一个 EXE 文件。通过将该 EXE 文件复制并粘贴到另一台机器上,它应该与我在我的机器上所做的实际过程一起工作。我已经搜索过了,主要是有针对 Win 应用程序的解决方案。我需要在我的控制台应用程序中执行此操作。

我已经完成的步骤: 1. 创建了一个控制台应用程序。2. 右键单击​​位于解决方案资源管理器中的解决方案 -> 添加 -> 新项目 -> 其他项目类型 -> Visual Studio 安装程序 -> 给定名称并选择位置并单击“确定”。3. 文件系统向导现已显示。

从这里我需要你的建议来添加程序集。

4

2 回答 2

8

There are 2 Ways to Do This... I just did this 20 Min Ago :)

  • Method 1 : Right Click on Your Project, Publish, Choose Location For The installer, Run it
  • Method 2 : As Previous people mentioned your bin/release folder will contain .exe files which need to be copied and Installed, i prefer the 1st method

Just a Side Note. Make Sure the Output Type Is of Console Type (Right Click on project... Output type...), Some windows applications give Problems when Publishing and Installing them

于 2013-09-16T13:39:37.437 回答
0

如果您的应用程序不需要写入注册表、启动等。而只需复制粘贴 exe,您可能只需要一个批处理脚本。

于 2013-09-16T06:16:39.977 回答