Visual Studio 插件 - 查找当前解决方案文件夹路径

发布于 2024-07-14 10:28:31 字数 62 浏览 5 评论 0原文

我加载了一个加载项并加载了一个解决方案,如何在我的加载项中以 C# 方式以编程方式找到该解决方案的文件夹路径?

I have an add-in loaded, and a solution loaded, how would I find the folder path of that solution programmatically in C# in my addin?

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

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

发布评论

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

评论(3

青春有你 2024-07-21 10:28:31

唉,经过一番谷歌搜索我终于明白了!

在connect.cs中:

    public String SolutionPath()
    {
        return Path.GetDirectoryName(_applicationObject.Solution.FullName);
    }

Alas I figured it out after a lot of goooogling!!

In connect.cs:

    public String SolutionPath()
    {
        return Path.GetDirectoryName(_applicationObject.Solution.FullName);
    }
舟遥客 2024-07-21 10:28:31

Solution.FullName 答案是正确的,但请注意,在 connect.cs 中调用 OnStartupCompleted 方法之前,您无法访问它。

The Solution.FullName answer is correct, but take care, you cannot access it until the OnStartupCompleted method is called in connect.cs.

佞臣 2024-07-21 10:28:31

您可以使用此代码:

string solutionpath = Directory.GetParent(Application.ExecutablePath).Parent.Parent.Parent.FullName;

问候

you can use this code:

string solutionpath = Directory.GetParent(Application.ExecutablePath).Parent.Parent.Parent.FullName;

regards

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