Configuration.IsDeployable Property

Definition

Gets whether the project or project item configuration can be deployed.

public:
 property bool IsDeployable { bool get(); };
public:
 property bool IsDeployable { bool get(); };
[System.Runtime.InteropServices.DispId(10)]
public bool IsDeployable { [System.Runtime.InteropServices.DispId(10)] get; }
[<System.Runtime.InteropServices.DispId(10)>]
[<get: System.Runtime.InteropServices.DispId(10)>]
member this.IsDeployable : bool
Public ReadOnly Property IsDeployable As Boolean

Property Value

A Boolean value indicating true if a project or project item can be deployed, false if not.

Attributes

Examples

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 can be deployed.  
            MessageBox.Show(config.IsDeployable.ToString());  
        }  
    }  
    catch(Exception ex)  
    {  
        MessageBox.Show(ex.Message);  
    }  
}  

Remarks

To indicate whether a project or item should be deployed, specify it in a SolutionContext as the configuration that has context and deploys for a given solution configuration.

Applies to