我最近将我的SVN存储库移到了Git。其中一个项目使用MSBuild在构建过程中检出SVN存储库。现在我需要在构建过程中克隆Git存储库而不是SVN。我穿过图书馆https://github.com/loresoft/msbuildtasks/tree/master/Source/MSBuild.Community.Tasks,找不到合适的样本来做这件事。有人可以帮助我吗?
这是我的SVN MSBuild代码。
<SvnCheckout
RepositoryPath="$(SiteSvnRepository)"
LocalPath="$(SiteSvnCheckOutDir)"
Username="$(SvnUsername)"
Password="$(SvnPassword)"/>
由于