Hi Mike,
I am not sure it you can get the command-line, but the project properties
are stored in EnvDTE.Project.Properties and configuration (Debug, Release)
properties in EnvDTE.Configuration.Properties. Maybe the specific VC++
extensibility model has something more to offer
(VCProjectConfigurationProperties, for example).

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
>I am curious to know if I can extract project settings using the VS.NET
> Automation model. In the project settings property page, I want to access
[quoted text clipped - 4 lines]
> Thanks,
> MIke
Mike M - 27 Apr 2006 15:23 GMT
Thanks for the info...I'll take a look.
Cheers,
Mike
Mike M - 27 Apr 2006 17:44 GMT
> Hi Mike,
>
[quoted text clipped - 3 lines]
> extensibility model has something more to offer
> (VCProjectConfigurationProperties, for example).
I found the VCCLCompilerTool & VCLinkerTool objects in the VC++ Project
Model...your right, the objects only offer read/write access to each project
property but does not provide any methods for generating the command line for
the given compiler settings.
I guess the VS.NET team does the work of inspecting each project attribute
and generates the command-line for the view only. It would have been nice if
the objects exposed that functionality...guess it can be something for the
wish list.
Thanks for the point in the right direction.
Cheers,
Mike