SolutionBuild2.BuildDependencies - свойство
Возвращает коллекцию BuildDependencies, которая позволяет указывать зависимости одних проектов от других.
Пространство имен: EnvDTE80
Сборка: EnvDTE80 (в EnvDTE80.dll)
Синтаксис
'Декларация
ReadOnly Property BuildDependencies As BuildDependencies
Get
BuildDependencies BuildDependencies { get; }
property BuildDependencies^ BuildDependencies {
BuildDependencies^ get ();
}
abstract BuildDependencies : BuildDependencies
function get BuildDependencies () : BuildDependencies
Значение свойства
Тип: EnvDTE.BuildDependencies
Коллекция BuildDependencies.
Реализации
SolutionBuild.BuildDependencies
Примеры
В этом примере создается решение и в него добавляется проект консольного приложения Visual C#. Потом в нем отображается число зависимостей построения для проекта.
Дополнительные сведения о запуске этого примера в виде надстройки см. в разделе Практическое руководство. Компиляция и выполнение примеров кода модели объектов автоматизации.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
SolutionBuild2DependExample(_applicationObject)
End Sub
Sub SolutionBuild2DependExample(ByVal dte As DTE2)
Try
Dim soln As Solution2 = CType(_applicationObject.Solution _
, Solution2)
Dim csTemplatePath As String
Dim csPrjPath As String
Dim sb As SolutionBuild2
Dim bld As BuildDependencies
' Make sure you create the folders that make up the path
' on your computer. You can replace this with your own path.
csPrjPath = "C:\UserFiles\MyProjects\MyTestProject"
' Get the project template path for a C# console project.
csTemplatePath = soln.GetProjectTemplate("Console Application"_
, "CSharp")
' Create a new console project by using the
' template obtained above.
soln.AddFromTemplate(csTemplatePath, csPrjPath, "newCSProj" _
, False)
sb = CType(soln.SolutionBuild, SolutionBuild2)
bld = sb.BuildDependencies
MsgBox("The project " & bld.Item(1).Project.Name & " has " _
& bld.Count.ToString() & " build dependencies.")
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
SolutionBuild2DependExample(_applicationObject);
}
public void SolutionBuild2DependExample(DTE2 dte)
{
try
{
Solution2 soln = (Solution2)_applicationObject.Solution;
String csTemplatePath;
String csPrjPath;
SolutionBuild2 sb;
BuildDependencies bld;
// Make sure you create the folders that make up the path
// on your computer. You can replace this with your own path.
csPrjPath = "C:\\UserFiles\\MyProjects\\MyTestProject";
// Get the project template path for a C# console project.
csTemplatePath = soln.GetProjectTemplate("Console Application",
"CSharp");
// Create a new console project by using the
// template obtained above.
soln.AddFromTemplate(csTemplatePath, csPrjPath, "newCSProj",
false);
sb = (SolutionBuild2)soln.SolutionBuild;
bld = sb.BuildDependencies;
MessageBox.Show("The project " + bld.Item(1).Project.Name
+ " has " + bld.Count.ToString() + " build dependencies.");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Безопасность платформы .NET Framework
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Использование библиотек из не вполне надежного кода.