.NET AddIn Framework,忽略文件夹 (.svn)

发布于 2024-10-19 04:10:06 字数 207 浏览 2 评论 0原文

是否可以使 AddIn Framework (MAF) 的 AddInStore 忽略某个目录?

在我的例子中,插件存储由 subversion 进行版本控制,但是当重建管道时,我收到错误:AddIns 中的“.svn”文件夹不包含有效的插件:

在目录 [..]\AddIns\.svn 中找不到有效的加载项。

Is it possible to make the AddInStore of the AddIn Framework (MAF) to ignore a certain directory?

In my case the addin store is versioned by subversion but when the pipeline is rebuild I get the error that the ".svn" folder in AddIns does not contain a valid addin:

Could not find a valid add-in in the directory [..]\AddIns\.svn.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风无影 2024-10-26 04:10:06

我现在这样做:

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);
}

有什么建议吗?

I am now doing it this way:

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);
}

Any suggestions?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文