Open DTE solution from another program (not add-in)
Is it possible to modify a solution, and use envdte tools, from a command-line project ? I have an add-in that modifies a solution. But... the changes are required for over a hundred projects... So I'd like to make a c# program that has the same logic, only it iterates through all solution files. The add-in starts with EnvDTE.Solution solution = (EnvDTE.Solution)application.Solution; where DTE2 application is passed from the add-in... How can I get the same solution, which then I query for projects... From a separate program, that will only know the solutionPath ? Is it possible to open the