CodeGo.net>如何返回Visual Studio当前打开的soution目录
作者:互联网
我有一个Visual Studio解决方案,其中包含几个项目,并且分别位于不同的目录中.
在我的C#或VB.NET代码中,我想确定基本目录(或解决方案所在的目录).
肮脏的解决方案是调用目录parent.parent.parent直到找到文件* .sln,但在其他目录中也有一些我不希望返回的解决方案.
我只是想知道是否有更干净的方法,可能是System.Diagnostics.Debugger或类似的一部分?
谢谢您的回覆.
解决方法:
由于sln文件不需要部署在目标计算机上-为什么要尝试找到它?
如果您仍然想使用编号为EnvDTE Namespace的信息
EnvDTE.DTE dte = (EnvDTE.DTE) System.Runtime.InteropServices.Marshal.GetActiveObject(“VisualStudio.DTE”);
string folder = System.IO.Path.GetDirectoryName(dte.ActiveDocument.FullName);
标签:ide,vb-net,c,net,visual-studio 来源: https://codeday.me/bug/20191210/2103764.html