Hi Bill,
See my article:
HOWTO: Automating Visual Studio .NET from outside the IDE
http://www.mztools.com/articles/2005/MZ005.htm

Signature
Best regards,
Carlos J. Quintero
MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
> Hello,
>
[quoted text clipped - 28 lines]
> Thanks,
> Bill
wsr@williamrakocy.com - 25 Jan 2006 01:07 GMT
> Hi Bill,
>
[quoted text clipped - 46 lines]
> > Thanks,
> > Bill
Carlos,
Thanks very much for your response. The information on your link was
quite helpful, and led me to the following solution:
EnvDTE.DTE aDTE =
(EnvDTE.DTE)Microsoft.VisualBasic.Interaction.CreateObject("VisualStudio.DTE",
"");
aDTE.MainWindow.Visible = false;
aDTE.Solution.Create(@"C:\temp", "tmp_solution.sln");
Project proj = aDTE.Solution.AddFromFile(myProjPath, true);
folder.ProjectItems.AddFromFile(myFilePath);
proj.Save(myProjPath);
aDTE.Quit();
-Bill
wsr@williamrakocy.com - 25 Jan 2006 01:15 GMT
> Hi Bill,
>
[quoted text clipped - 46 lines]
> > Thanks,
> > Bill
Carlos,
Thanks very much for your response. The information on your link was
quite helpful, and led me to the following solution:
EnvDTE.DTE aDTE =
(EnvDTE.DTE)Microsoft.VisualBasic.Interaction.CreateObject("VisualStudio.DTE",
"");
aDTE.MainWindow.Visible = false;
aDTE.Solution.Create(@"C:\temp", "tmp_solution.sln");
Project proj = aDTE.Solution.AddFromFile(myProjPath, true);
folder.ProjectItems.AddFromFile(myFilePath);
proj.Save(myProjPath);
aDTE.Quit();
-Bill
wsr@williamrakocy.com - 25 Jan 2006 01:16 GMT
> Hi Bill,
>
[quoted text clipped - 46 lines]
> > Thanks,
> > Bill
Carlos,
Thanks very much for your response. The information on your link was
quite helpful, and led me to the following solution:
EnvDTE.DTE aDTE =
(EnvDTE.DTE)Microsoft.VisualBasic.Interaction.CreateObject("VisualStudio.DTE",
"");
aDTE.MainWindow.Visible = false;
aDTE.Solution.Create(@"C:\temp", "tmp_solution.sln");
Project proj = aDTE.Solution.AddFromFile(myProjPath, true);
proj.ProjectItems.AddFromFile(myFilePath);
proj.Save(myProjPath);
aDTE.Quit();
-Bill