Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 Visual Studio 扩展/加载项,我想查找从当前解决方案中的项目创建的所有程序集的名称。
我没有任何技术限制——我可以使用 DTE、MEF 或其他任何可以完成工作的工具。
我设法找到了答案 - 使用 DTE:
var projects = dte.Solution.Projects; foreach (Project project in projects) { if (project.Properties != null) { var assemblyName = project.Properties.Item("AssemblyName").Value.ToString(); } }