IVsAppContainerProjectDeploy Interface
Deploys the app container application.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)
Syntax
'Declaration
<GuidAttribute("A830AC2A-4D69-45A3-A157-6574756034D5")> _
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
Public Interface IVsAppContainerProjectDeploy
[GuidAttribute("A830AC2A-4D69-45A3-A157-6574756034D5")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsAppContainerProjectDeploy
[GuidAttribute(L"A830AC2A-4D69-45A3-A157-6574756034D5")]
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
public interface class IVsAppContainerProjectDeploy
[<GuidAttribute("A830AC2A-4D69-45A3-A157-6574756034D5")>]
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
type IVsAppContainerProjectDeploy = interface end
public interface IVsAppContainerProjectDeploy
The IVsAppContainerProjectDeploy type exposes the following members.
Methods
Name | Description | |
---|---|---|
AdviseAppContainerDeployEvents | Enables a client to be notified of app container deployment events. | |
StartDeployAsync | Initiates deployment of the app container application on the local machine. It creates a "layout folder" containing the app files as defined in the package recipe file and registers the application with Windows package manager. After successfully executing of this process, the application is ready to be launched on the local box or on the simulator. | |
StartRemoteDeployAsync | Initiate deployment of the app container application on a remote machine. | |
UnadviseAppContainerDeployEvents | Disables clients from receiving notifications of app container deployment events. |
Top