0
一個預生成事件我有Visual Studio中的C#/ ASP.NET MVC項目2013最佳實踐自動化SVN結賬與MSBuild的
什麼是自動化的SVN結帳作爲預構建的最佳途徑事件與MSBuild。我有兩個選項工作,但我不知道什麼被認爲是最好的。
第一種方式是在的csproj文件:
<Target Name="BeforeBuild">
<Exec ContinueOnError="false" Command="svn co --username my_username --password my_password https://my.repository $(MSBuildProjectDirectory)\my\subdirectory" />
</Target>
二是右擊工程 - >屬性 - >生成事件 - >預生成事件命令行:
svn co --username my_username --password my_password https://my.repository $(ProjectDir)\my\subdirectory