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.
是否可以使 AddIn Framework (MAF) 的 AddInStore 忽略某个目录?
在我的情况下,插件商店是由颠覆版本控制的,但是当管道重建时,我收到错误消息,即插件中的“.svn”文件夹不包含有效的插件:
在目录 [..]\AddIns\.svn 中找不到有效的加载项。
我现在这样做:
List<String> warnings = new List<String>(AddInStore.Rebuild(appPath)); // remove warnings about .svn directories for (int i = warnings.Count - 1; i >= 0; i--) { if (warnings[i].Contains(".svn")) warnings.RemoveAt(i); }
有什么建议么?