如何编译完成的 C# 项目然后在 Visual Studio 之外运行?
我刚刚设计完一个简单的代码程序。 我把它称为“猜谜游戏”。 该程序到目前为止运行良好,我想在不打开 Microsoft Visual Studio 的情况下打开它。
我怎样才能做到这一点?
I just finished designing a simple code program. I called it a "Guessing Game". The program is so far working fine and I would like to open it without opening my Microsoft Visual Studio.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果找不到 .exe 文件,请重建您的解决方案,并在 Visual Studio 的“输出”中显示该文件的路径。
构建解决方案路径。
If you cannot find the .exe file, rebuild your solution and in your "Output" from Visual Studio the path to the file will be shown.
Build solution path.
最简单的方法是:
F6
构建它My Documents\Visual Studio 200x\Projects\my_project\
)bin\Release\
并将可执行文件从那里复制到您想要存储它的任何位置The easiest way is:
F6
to build itMy Documents\Visual Studio 200x\Projects\my_project\
)bin\Release\
and copy the executable from there to wherever you want to store it将发布版本编译为 .exe 文件,然后将其复制到安装了合适版本的 .NET Framework 的计算机上并在那里运行。 .exe 文件位于项目文件夹的 bin\Release 子文件夹中。
Compile the Release version as .exe file, then just copy onto a machine with a suitable version of .NET Framework installed and run it there. The .exe file is located in the bin\Release subfolder of the project folder.
我正在使用 Visual Studio 2017。
它会将安装文件发布到您指定的位置
。
I'm using Visual Studio 2017.
It will publish, complete with setup file to the location you specified.
Hope this helps
在项目文件夹中,打开 bin\Debug 子文件夹,您将看到编译结果。
On your project folder, open up the bin\Debug subfolder and you'll see the compiled result.
项目文件中是文件夹“bin/debug/your_appliacion_name.exe”。 这是最终的可执行程序文件。
In the project file is folder "bin/debug/your_appliacion_name.exe". This is final executable program file.