MSBuild Extension Pack简单教程

时间:2011-12-02 15:53:12

标签: msbuild

我正在寻找一个非常简单的示例,它显示了究竟是什么以及如何使用MSBuild扩展包:http://msbuildextensionpack.codeplex.com/我找不到任何真正的初学者。谢谢。

1 个答案:

答案 0 :(得分:2)

浏览这些链接, 它们非常有用,我想通过它们如何使用MSBuildCommunityTasks,

How do I import the msbuildcommunitytasks project from another msbuild project with a relative file path?

Msbuild and SVN update

另外, 实施例

<SvnUpdate 
    Username="$(CommitUser)" 
    Password="$(CommitPassword)" 
    LocalPath="$(ProjectDir)">
</SvnUpdate>

它就是你在命令行上使用的。