방법: ClickOnce 게시 이벤트에 응답
Visual Studio의 추가 기능은 Visual Studio 2013에서 사용되지 않습니다. 추가 기능을 VSPackage 확장으로 업그레이드하는 것이 좋습니다. 업그레이드에 대한 자세한 내용은 FAQ: VSPackage 확장으로 추가 기능 변환 을 참조하십시오.
ClickOnce를 사용하면 Windows 응용 프로그램을 웹 서버나 네트워크 파일 공유에 게시하여 설치를 단순화할 수 있습니다. 자세한 내용은 ClickOnce 보안 및 배포을 참조하십시오.
EnvDTE80에 포함된 Visual Studio 핵심 자동화 모델에는 PublishEvents라는 이벤트 처리 개체가 있습니다. 이 개체를 사용하여 ClickOnce 배포의 시작 시점(OnPublishBegin)과 종료 시점(OnPublishDone)을 검색할 수 있습니다. 그런 다음 이러한 이벤트를 기반으로 원하는 작업을 수행할 수 있습니다. 다음 절차에서는 이러한 이벤트를 처리하는 방법을 보여 줍니다.
참고
표시되는 대화 상자와 메뉴 명령은 활성 설정이나 버전에 따라 도움말에서 설명하는 것과 다를 수 있습니다.이러한 절차는 일반 개발 설정을 사용하여 개발되었습니다.설정을 변경하려면 도구 메뉴에서 설정 가져오기 및 내보내기를 선택합니다.자세한 내용은 Visual Studio에서 개발 설정 사용자 지정을 참조하십시오.
ClickOnce 이벤트에 응답하려면
새로운 추가 기능 또는 기존 추가 기능의 Connect 클래스에 다음 코드를 추가합니다.
방법: 추가 기능 관리자를 사용하여 추가 기능 제어의 설명에 따라 추가 기능을 빌드하고 활성화합니다.
ClickOnce 보안 및 배포의 설명에 따라 ClickOnce 배포 작업을 시작합니다.
배포의 시작 시점과 종료 시점이 메시지 상자에 표시되는 것을 볼 수 있습니다.
예제
Public Class Connect
Implements IDTExtensibility2
Public WithEvents pubEvents As EnvDTE80.PublishEvents
Dim _applicationObject As DTE2
Dim _addInInstance As AddIn
Public Sub OnConnection(ByVal application As Object, ByVal _
connectMode As ext_ConnectMode, ByVal addInInst As Object, ByRef _
custom As Array)
Implements IDTExtensibility2.OnConnection
Try
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
Try
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
Dim events As EnvDTE80.Events2
events = CType(_applicationObject.Events2, Events2)
pubEvents = CType(events._PublishEvents(Nothing), _
EnvDTE80.PublishEvents)
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub
Private Sub pubEvents_OnPublishBegin(ByRef [Continue] As Boolean) _
Handles pubEvents.OnPublishBegin
MsgBox("A publish event is occuring…")
End Sub
Private Sub pubEvents_OnPublishDone(ByVal Success As Boolean) _
Handles pubEvents.OnPublishDone
MsgBox("A publish event has completed.")
End Sub
Public Sub OnDisconnection(ByVal disconnectMode As _
ext_DisconnectMode, ByRef custom As Array) Implements _
IDTExtensibility2.OnDisconnection
pubEvents = Nothing
End Sub
using System;
using Extensibility;
using EnvDTE;
using EnvDTE80;
namespace MyAddin2
{
public class Connect : IDTExtensibility2
{
public Connect()
{
}
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array
custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
try
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
EnvDTE80.Events2 events;
events = (Events2)_applicationObject.Events;
// Retrieve the delegates for the Publish events.
pubEvents = (EnvDTE80.PublishEvents)
events.PublishEvents;
// Connect to the delegates exposed from the Publish
// objects retrieved above.
pubEvents.OnPublishBegin += new
_dispPublishEvents_OnPublishBeginEventHandler
(this.OnPublishBegin);
pubEvents.OnPublishDone += new
_dispPublishEvents_OnPublishDoneEventHandler
(this.OnPublishDone);
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
// When the Publish operation is done, disconnect the event
// handlers to prevent slowing of your system.
public void OnDisconnection(ext_DisconnectMode disconnectMode,
ref Array custom)
{
if (pubEvents != null)
{
pubEvents.OnPublishBegin -= new
_dispPublishEvents_OnPublishBeginEventHandler
(this.OnPublishBegin);
pubEvents.OnPublishDone -= new
_dispPublishEvents_OnPublishDoneEventHandler
(this.OnPublishDone);
}
}
// The Publish events.
public void OnPublishBegin(ref bool pubContinue)
{
if (pubContinue == true)
{
System.Windows.Forms.MessageBox.Show
("A publish event is occuring…");
}
else
{
System.Windows.Forms.MessageBox.Show
("A publish event has halted.");
}
}
public void OnPublishDone(bool success)
{
if (success == true)
{
System.Windows.Forms.MessageBox.Show
("A publish event has completed.");
}
else
{
System.Windows.Forms.MessageBox.Show
("A publish event did not succeed.");
}
}
public void OnAddInsUpdate(ref Array custom)
{
}
public void OnStartupComplete(ref Array custom)
{
}
public void OnBeginShutdown(ref Array custom)
{
}
private EnvDTE80.PublishEvents pubEvents;
private DTE2 _applicationObject;
private AddIn _addInInstance;
}
}