Solution3.SolutionBuild Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft das SolutionBuild-Objekt für die Projektmappe ab, das den Stamm des Buildautomatisierungsmodells auf Projektmappenebene darstellt.
public:
property EnvDTE::SolutionBuild ^ SolutionBuild { EnvDTE::SolutionBuild ^ get(); };
public:
property EnvDTE::SolutionBuild ^ SolutionBuild { EnvDTE::SolutionBuild ^ get(); };
[System.Runtime.InteropServices.DispId(38)]
public EnvDTE.SolutionBuild SolutionBuild { [System.Runtime.InteropServices.DispId(38)] get; }
[<System.Runtime.InteropServices.DispId(38)>]
[<get: System.Runtime.InteropServices.DispId(38)>]
member this.SolutionBuild : EnvDTE.SolutionBuild
Public ReadOnly Property SolutionBuild As SolutionBuild
Eigenschaftswert
Ein SolutionBuild-Objekt.
Implementiert
- Attribute
Beispiele
Sub PropertiesExample(ByVal dte As DTE2)
' List the number of build dependencies,
' set the configuration to Release, and buildsthe solution.
' Open a solution in Visual Studio before running this example.
Try
Dim soln As Solution2 = _
CType(_applicationObject.Solution, Solution2)
Dim solnBld As SolutionBuild3
solnBld = CType(soln.SolutionBuild, SolutionBuild3)
Dim bld As BuildDependencies
bld = solnBld.BuildDependencies
MsgBox("The project " & bld.Item(1).Project.Name & " has " _
& bld.Count.ToString() & " build dependencies.")
MsgBox("Set the configuration to release and build...")
solnBld.SolutionConfigurations.Item("Release").Activate()
solnBld.Build()
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using System.Windows.Forms;
public void ProjectExample(DTE2 dte)
{
// Set the configuration to Release and build the solution.
// Open a solution in Visual Studio before running this example.
try
{
Solution3 soln = (Solution3)_applicationObject.Solution;
SolutionBuild2 solnBld = (SolutionBuild2)soln.SolutionBuild;
BuildDependencies bld = solnBld.BuildDependencies;
MessageBox.Show("The project " + bld.Item(1).Project.Name
+ " has " + bld.Count.ToString() + " build dependencies.");
MessageBox.Show
("Set the configuration to release and build...");
solnBld.SolutionConfigurations.Item("Release").Activate();
solnBld.Build(true );
}
catch(SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}