如何使用 MSBuild 执行 Visual Studio 项目? (VB.Net项目)

发布于 2024-11-27 21:36:14 字数 540 浏览 1 评论 0原文

实现目标: 我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┼── 2024-12-04 21:36:14

可以使用< /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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文