用于保存 msbuild 任务的外部文件
我为我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您可以使用导入任务:
是的,您可以创建一个批处理文件来运行 msbuild。语法是
目标在 msbuild 文件中定义的位置,属性是文件中定义的任何属性。如果未指定目标,则将运行 msbuild 文件元素中定义的默认目标。以下是几个示例:
使用 Clean 和 Compile 目标运行构建:
或者使用 Compile 目标和发布配置运行构建:
或者使用默认目标运行构建并设置版本属性:
命令行参数优先于文件中定义的值。因此,在上面的示例中,如果您在文件中将版本定义为:
构建将以配置版本 2.0.0.1 运行 与
往常一样,请查看 MSDN 了解更多信息。
Yes. You can use the Import task:
And yes you can create a batch file to run msbuild. The syntax is
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:
Or to run your build with a target of Compile and a release configuration:
Or to run your build with the default target and a set a version property:
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:
The build would run with a configured version of 2.0.0.1
As usual, check out MSDN for more info.