Visual Studio 插件 - 查找当前解决方案文件夹路径
我加载了一个加载项并加载了一个解决方案,如何在我的加载项中以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
唉,经过一番谷歌搜索我终于明白了!
在connect.cs中:
Alas I figured it out after a lot of goooogling!!
In connect.cs:
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.
您可以使用此代码:
问候
you can use this code:
regards