Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是为一个项目设置多个外部(链接),以便任何签出该项目的人都应该同时获得所有外部。这可以在 SVN.EXE 中作为 -propset svn:externals -F svnexternalsfile 来实现。
如何在 SharpSvn 的 SetProperty() 方法中指定外部文件?
SharpSvn 不会为您处理文件读取;它只允许设置属性。
using(SvnClient client = new SvnClient()) { string val = File.ReadAllText("C:\\My\\file.txt"); client.SetProperty("C:\\WorkDir", SvnPropertyNames.SvnExternals, val); }