Ms Visual 应用程序的 .exe 文件位于何处?
Ms Visual 应用程序的 .exe 文件位于何处?我刚刚创建了它,我想知道,以便我可以使用参数从 AIR 执行它。 AIR 上的代码示例:
var f:File = new File ("C:\path\application.exe -" + param1 + " -" + param2)
f.openWithDefaultApplication()
Where do the .exe file of a Ms Visual application goes to? I've just created it and I would like to know so that I can execute it from AIR with parameters.
ex of code on AIR:
var f:File = new File ("C:\path\application.exe -" + param1 + " -" + param2)
f.openWithDefaultApplication()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
它会构建在您的 bin 文件夹中。
如果右键单击您的项目并选择“在 Windows 资源管理器中打开文件夹”,您将在其中找到 bin 文件夹和所有项目文件。
Windows 的默认设置是。
C:\users\“用户帐户”\我的文档\Microsoft Visual studio 2010\Projects\
It gets build in your bin folder.
If you right click on your project and select "Open folder in Windows Explorer", you will find the bin folder and all your project files in there.
Default for windows is.
C:\users\"User account"\My Documents\Microsoft Visual studio 2010\Projects\
你告诉它去哪里,它就去哪里。
它通常来自
bin\Debug
。It goes wherever you tell it to.
It usually comes from
bin\Debug
.它被放入项目的 Bin 文件夹中。
在 Bin 内,可能有也可能没有用于调试和发布版本的单独文件夹
It gets put into the Bin folder of the project.
within the Bin, there may or may not be seperate folders for Debug and Release builds
通常它会进入 bin/debug 或 bin/release 。您可以在项目属性中对其进行配置。
It goes to bin/debug or bin/release usually. You can configure it in Project properties.
调试时
如果您构建了它并正在寻找它,它将位于您的 bin/release 中:
就像这样。
When debugging
If you built it and are looking for it it will be in your bin/release:
Like so.