Solution3.SolutionBuild Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает объект SolutionBuild для решения, который предоставляет собой корневой объект модели автоматизации построения на уровне решения.
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
Значение свойства
Объект SolutionBuild.
Реализации
- Атрибуты
Примеры
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);
}
}