如何使用 MSBuild 执行 Visual Studio 项目? (VB.Net项目)
实现目标: 我想从 msbuild 执行我的应用程序,因为它显示了许多有关执行的有用信息,包括最重要的执行时间
。
我有 :
一个 Visual Studio 项目,我使用 Ctrl+F5 在 Visual Stdio 中执行我的应用程序。
我想使用 MSBuild 命令从命令提示符执行相同的 Ctrl+F5 执行。
我不想为此编写自己的 Msbuild 执行任务,而是希望使用 Visual Studio 用于执行 Ctrl+F5 的任务。
如何使用 MSBuild 从命令提示符执行此操作?
我使用 MSBuild 构建我的项目:
C:\project> msbuild project.vbproj /t:"Clean;Build"
现在,如何使用 MSBuild 执行它?
Aim to Acheive :
I want to execute my application from msbuild as it shows a lot of helpful information about the execution including the most important the Time of Execution
.
I have :
A Visual Studio Project, and I use Ctrl+F5 to execute my application in Visual Stdio.
I want to execute the same Ctrl+F5 execution from the command prompt using MSBuild command.
I prefer not to write my own Msbuild execution task for this and want to use the task that Visual Studio uses to do Ctrl+F5.
How do you do it from command prompt using MSBuild ?
I Build my projects with MSBuild as :
C:\project> msbuild project.vbproj /t:"Clean;Build"
Now, how to execute it with MSBuild ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用< /code>
任务...当然,或者您也可以直接从命令行显式运行该程序。 (如果执行它自然是构建的一部分,我只会将其放入构建文件中 - 例如,构建的早期部分创建了一个工具,然后使用该工具为构建的后续部分预处理资源。)
You can use the
<Exec>
task... or you could just run the program from the command line explicitly, of course. (I'd only put it in the build file if executing it was naturally part of the build - e.g. an early part of the build created a tool which was then used to preprocess a resource for a later part of the build.)