以编程方式获取解决方案详细信息
有没有办法通过 C# 从 Visual Studio 解决方案获取处理器类型、构建类型等?
Is there a a way to get the processor type, build type, etc, from a Visual Studio solution, via C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个叫做 ConfigurationManager 负责构建类型和其他细节。
There is something called ConfigurationManager which takes care of the build type and other details.
创建 Visual Studio 插件(项目模板在 Visual Studio 的扩展性类别中可用)并使用 DTE.Solution 中的 ActionConfiguration 属性访问当前的解决方案配置。有关更多详细信息,请参阅此:
Create a Visual Studio Addin (A Project Template is available in Visual Studio in the Extensibility Category) and access your current Solution Configuration with the ActionConfiguration Property from DTE.Solution. See this for further details: