Hi everyone, I need to generate BizTalk Project and components programmatically, I tried to use the DTE.Project class, but I can't manipulate the project properties (e.g. AssemblyName, references).
Does anyone have experience on using DTE with BizTalk project?
Basically what I want to do is to create a BizTalk project (or open an existing project), and be able to modify project preperties
thanks first!
From http://developmentnow.com/g/55_0_0_0_0_0/vsnet-ide.ht
Hi Gnic,
I am not familiar with BizTalk projects but if they are subtypes of VB.NET
or C# project types, you can:
- Use EnvDTE.Project.Properties.Item(propertyName).Value = xxx to manipulate
its properties. You need to guess the propertyName though, iteraring a bit
to display available names.
- Cast EnvDTE.Project.Object to VSLangProj.VSProject and use
VSProject.References. See my article:
HOWTO: Getting information specific to VB.NET and C# projects from an add-in
or macro
http://www.mztools.com/articles/2005/MZ011.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
> Hi everyone, I need to generate BizTalk Project and components
> programmatically, I tried to use the DTE.Project class, but I can't
[quoted text clipped - 10 lines]
> Posted via DevelopmentNow.com Groups
> http://www.developmentnow.com