Configuration.OutputGroups Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection of OutputGroup objects that contains the names of the files that are outputs for the project.
public:
property EnvDTE::OutputGroups ^ OutputGroups { EnvDTE::OutputGroups ^ get(); };
[System.Runtime.InteropServices.DispId(15)]
public EnvDTE.OutputGroups OutputGroups { [System.Runtime.InteropServices.DispId(15)] get; }
[<System.Runtime.InteropServices.DispId(15)>]
[<get: System.Runtime.InteropServices.DispId(15)>]
member this.OutputGroups : EnvDTE.OutputGroups
Public ReadOnly Property OutputGroups As OutputGroups
Property Value
A OutputGroups collection.
- Attributes
Examples
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
Project prj;
Configuration config;
OutputGroups outPGs;
Properties props;
if (dte.Solution.Projects.Count > 0)
{
prj = dte.Solution.Projects.Item(1);
config = prj.ConfigurationManager.ActiveConfiguration;
// Return a collection of OutputGroup objects that contain
// the names of files that are outputs for the project.
outPGs = config.OutputGroups;
MessageBox.Show(outPGs.Count.ToString());
// Returns the project for the config.
MessageBox.Show(((Project)config.Owner).Name);
// Returning the platform name for the Configuration.
MessageBox.Show(config.PlatformName);
// Returning all properties for Configuration object.
props = config.Properties;
string p = "";
foreach (Property prop in props)
{
p = p + prop.Name + "\n";
}
MessageBox.Show(p);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}