VSProject2.BuildManager プロパティ
VSProject の BuildManager オブジェクトを取得します。
名前空間: VSLangProj80
アセンブリ: VSLangProj80 (VSLangProj80.dll 内)
構文
'宣言
ReadOnly Property BuildManager As BuildManager
BuildManager BuildManager { get; }
property BuildManager^ BuildManager {
BuildManager^ get ();
}
abstract BuildManager : BuildManager
function get BuildManager () : BuildManager
プロパティ値
型 : VSLangProj.BuildManager
BuildManager オブジェクト。
解説
BuildManager プロパティは、カスタム ツールの実行によって生成されたポータブル実行可能 (PE) ファイルを管理するために、サードパーティの開発者が使用します。詳細については、「BuildManagerEvents」を参照してください。
例
このサンプル コードをアドインとして実行するには、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。このアドインを実行する前に、Visual Basic または Visual C# プロジェクトを開いておきます。
[Visual Basic]
Imports VSLangProj
Imports VSLangProj2
Imports VSLangProj80
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)
BuildManagerTest(applicationObject)
End Sub
Sub BuildManagerTest(ByVal dte As DTE2)
Dim aProject As Project
Dim aVSProject As VSProject2
aProject = applicationObject.Solution.Projects.Item(1)
MsgBox("Project kind is: " & aProject.Kind & vbCr _
& "Project name is: " & aProject.Name)
aVSProject = CType(applicationObject.Solution.Projects.Item(1) _
.Object, VSProject2)
MsgBox("The full name of the project is:" & vbCr _
& aVSProject.Project.FullName)
MsgBox("The BuildManager's containing project is: "_
& aVSProject.BuildManager.ContainingProject.Name)
MsgBox("The Buildmanager's design time output monikers type is:" _
& vbCr &_
aVSProject.BuildManager.DesignTimeOutputMonikers.GetType.ToString())
End Sub
[C#]
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
BuildManagerTest((DTE2)applicationObject);
}
public void BuildManagerTest(DTE2 dte)
{
Project aProject = null;
VSProject2 aVSProject = null;
aProject = applicationObject.Solution.Projects.Item(1);
MessageBox.Show("Project kind is: " + aProject.Kind + "\n"
+ "Project name is: " + aProject.Name);
aVSProject = ((VSProject2)( applicationObject.Solution.Projects.Item(1).Object));
MessageBox.Show("The full name of the project is:" + "\n"
+ aVSProject.Project.FullName);
MessageBox.Show("The BuildManager's containing project is: "
+ aVSProject.BuildManager.ContainingProject.Name);
MessageBox.Show("The Buildmanager's design time output monikers
type is:" + "\n" +
aVSProject.BuildManager.DesignTimeOutputMonikers.GetType().ToString());
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。