次の方法で共有


Configuration.IsBuildable プロパティ

プロジェクトまたはプロジェクト項目の構成をビルドできるかどうかを示す値を取得します。

名前空間:  EnvDTE
アセンブリ:  EnvDTE (EnvDTE.dll 内)

構文

'宣言
ReadOnly Property IsBuildable As Boolean
bool IsBuildable { get; }
property bool IsBuildable {
    bool get ();
}
abstract IsBuildable : bool
function get IsBuildable () : boolean

プロパティ値

型 : System.Boolean
プロジェクトまたはプロジェクト項目をビルドする場合は true を示し、それ以外の場合は false を示すブール値。

解説

プロジェクトまたは項目をビルドするかどうかを示すには、 SolutionContext 内で、指定のソリューション構成に関するコンテキストを持ちビルドする構成の中で指定します。

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;
        if (dte.Solution.Projects.Count > 0)
        {
            prj = dte.Solution.Projects.Item(1);
            config = prj.ConfigurationManager.ActiveConfiguration;
            // Determine and show whether the active configuration is buildable.
            MessageBox.Show(config.IsBuildable.ToString());
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

Configuration インターフェイス

EnvDTE 名前空間

その他の技術情報

方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する