用于保存 msbuild 任务的外部文件

发布于 2024-09-15 03:08:06 字数 163 浏览 4 评论 0原文

我为我的 VS 项目创建了一些 ms 构建任务。

是否可以创建一个外部文件来保存构建任务并通过主项目文件引用它,而不是必须使用每个任务更新 VS 项目文件?

另外,我在 nant 中看到,您可以创建 .bat 文件来运行 nant 任务。是否可以用 msbuild 做类似的事情?

I have created some ms build tasks for my VS project.

Rather than having to update the VS Project file with each of the tasks, is it possible to create an external file to hold the build tasks and reference it via the main project file?

Also, I have seen with nant, that you can create .bat file to run nant tasks. Is it possible to do similar with msbuild?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初吻给了烟 2024-09-22 03:08:06

是的。您可以使用导入任务:

<Import Project="PathToMyIncludeFile\Include.proj" />

是的,您可以创建一个批处理文件来运行 msbuild。语法是

msbuild <project> /t:target[;target] /p:propertyname=propertyvalue

目标在 msbuild 文件中定义的位置,属性是文件中定义的任何属性。如果未指定目标,则将运行 msbuild 文件元素中定义的默认目标。以下是几个示例:

使用 Clean 和 Compile 目标运行构建:

msbuild myproject.proj /t:Clean;Compile

或者使用 Compile 目标和发布配置运行构建:

msbuild myproject.proj /t:Compile /p:Configuration=Release

或者使用默认目标运行构建并设置版本属性:

msbuild myproject.proj /p:Version=2.0.0.1

命令行参数优先于文件中定义的值。因此,在上面的示例中,如果您在文件中将版本定义为:

<PropertyGroup>
    <Version>1.0.0.0</Version>
<PropertyGroup>

构建将以配置版本 2.0.0.1 运行 与

往常一样,请查看 MSDN 了解更多信息。

Yes. You can use the Import task:

<Import Project="PathToMyIncludeFile\Include.proj" />

And yes you can create a batch file to run msbuild. The syntax is

msbuild <project> /t:target[;target] /p:propertyname=propertyvalue

Where the targets are defined in the msbuild file and the properties are any properties defined in the file. If you don't specify a target, the default that is defined in the msbuild file element will be run. Here are a couple of examples:

So to run your build with the Clean, and Compile targets:

msbuild myproject.proj /t:Clean;Compile

Or to run your build with a target of Compile and a release configuration:

msbuild myproject.proj /t:Compile /p:Configuration=Release

Or to run your build with the default target and a set a version property:

msbuild myproject.proj /p:Version=2.0.0.1

Command line parameters take precedence over the values defined in the file. So in the example above if you had the version defined in the file as:

<PropertyGroup>
    <Version>1.0.0.0</Version>
<PropertyGroup>

The build would run with a configured version of 2.0.0.1

As usual, check out MSDN for more info.

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