연습: 서버 탐색기 확장의 SharePoint 클라이언트 개체 모델 호출
이 연습에서는 서버 탐색기의 SharePoint 연결 노드용 확장에서 SharePoint 클라이언트 개체 모델을 호출하는 방법을 보여 줍니다.SharePoint 클라이언트 개체 모델을 사용 하는 방법에 대 한 자세한 내용은 SharePoint 개체 모델 호출.
이 연습에서는 다음 작업을 수행합니다.
다음과 같은 방법으로 서버 탐색기의 SharePoint 연결 노드를 확장하는 Visual Studio 확장 만들기
확장명 추가 된 웹 파트 갤러리 노드 아래에서 각 SharePoint 사이트 노드의 서버 탐색기.새 노드에는 사이트에서 웹 파트 갤러리의 각 웹 파트를 나타내는 자식 노드가 포함됩니다.
확장 웹 파트 인스턴스를 나타내는 노드의 새 형식을 정의 합니다.새 노드 형식은 새 웹 파트 갤러리 노드 아래에 있는 자식 노드의 기반이 됩니다.에 정보를 표시 하는 새 웹 파트 노드 형식이 있는 속성 노드를 나타내는 웹 파트에 대 한 창.
확장을 배포하기 위한 VSIX(Visual Studio Extension) 패키지 빌드
확장 디버깅 및 테스트
[!참고]
이 연습에서 만드는 확장에서 만드는 확장과 비슷합니다 연습: 서버 탐색기를 확장하여 웹 파트 표시.이 연습에서는 SharePoint 서버 개체 모델을 사용 하지만이 연습에서는 클라이언트 개체 모델을 사용 하 여 동일한 작업을 수행.
사전 요구 사항
이 연습을 완료하려면 개발 컴퓨터에 다음 구성 요소가 필요합니다.
지원 되는 버전의 Windows, SharePoint 및 Visual Studio.자세한 내용은 SharePoint 솔루션 개발 요구 사항을 참조하십시오.
Visual Studio SDK입니다.이 연습에서는 SDK의 VSIX 프로젝트 템플릿을 사용하여 확장을 배포하기 위한 VSIX 패키지를 만듭니다.자세한 내용은 Visual Studio에서 SharePoint 도구 확장을 참조하십시오.
다음 개념을 알고 있으면 연습을 완료하는 데 도움이 되지만 반드시 필요하지는 않습니다.
SharePoint 클라이언트 개체 모델 사용.자세한 내용은 Managed Client Object Model을 참조하십시오.
Sharepoint에서 웹 파트입니다.자세한 내용은 Web Parts Overview를 참조하십시오.
프로젝트 만들기
이 연습을 완료하려면 두 프로젝트를 만들어야 합니다.
VSIX 패키지를 만들어 서버 탐색기 확장을 배포하기 위한 VSIX 프로젝트입니다.
서버 탐색기 확장을 구현하는 클래스 라이브러리 프로젝트입니다.
먼저 프로젝트를 만들어 연습을 시작합니다.
VSIX 프로젝트를 만들려면
Visual Studio를 시작합니다.
메뉴 모음에서 파일, 새로 만들기, 프로젝트를 선택합니다.
에 새 프로젝트 대화 상자에서 확장 된 C# 또는 Visual Basic 노드를 다음 선택 확장성.
[!참고]
확장성 노드인 Visual Studio SDK를 설치한 경우에 사용할 수 있습니다.자세한 내용은 이 항목의 앞부분에 나오는 사전 요구 사항 단원을 참조하십시오.
대화 상자의 맨 위에 있는 선택 .NET Framework 4.5 .NET Framework 버전의 목록에서입니다.
SharePoint 도구 확장 기능은이 버전의.NET Framework 해야합니다.
선택 된 VSIX 프로젝트 템플릿.
에 이름 상자에 입력 WebPartNode, 다음 선택은 확인 단추입니다.
Visual Studio에서 솔루션 탐색기에 WebPartNode 프로젝트를 추가합니다.
확장 프로젝트를 만들려면
솔루션 탐색기, 솔루션 노드 바로 가기 메뉴를 열고 추가, 다음 선택 새 프로젝트.
[!참고]
Visual Basic 프로젝트에서는 General, Projects and Solutions, Options Dialog Box에서 솔루션 항상 표시 확인란을 선택한 경우에만 솔루션 탐색기에 솔루션 노드가 표시됩니다.
에 새 프로젝트 대화 상자에서 확장 된 C# 또는 Visual Basic 노드를 다음 선택 Windows.
대화 상자의 맨 위에 있는 선택 .NET Framework 4.5 .NET Framework 버전의 목록에서입니다.
프로젝트 템플릿 목록에서 선택 클래스 라이브러리.
에 이름 상자에 입력 WebPartNodeExtension, 다음 선택은 확인 단추입니다.
Visual Studio에서 솔루션에 WebPartNodeExtension 프로젝트를 추가하고 기본 Class1 코드 파일을 엽니다.
프로젝트에서 Class1 코드 파일을 삭제합니다.
확장 프로젝트 구성
확장을 만드는 코드를 작성 하기 전에 코드 파일과 어셈블리 참조를 프로젝트에 추가 해야 하며 기본 네임 스페이스를 업데이트 해야 합니다.
프로젝트를 구성하려면
에 WebPartNodeExtension 프로젝트, SiteNodeExtension 및 WebPartNodeTypeProvider 라는 두 개의 코드 파일을 추가 합니다.
WebPartNodeExtension 프로젝트에 대 한 바로 가기 메뉴를 열고 선택 참조 추가.
에 참조 관리자 – WebPartNodeExtension 대화 상자에서 선택 된 프레임 워크 노드를 선택한 다음 선택 확인란 System.ComponentModel.Composition 및 System.Windows.Forms 어셈블리에 대 한.
선택은 확장 노드를 각각 다음 어셈블리에 대 한 확인란을 선택 하 고 선택은 확인 단추:
Microsoft.SharePoint.Client
Microsoft.SharePoint.Client.Runtime
Microsoft.VisualStudio.SharePoint
바로 가기 메뉴를 열고를 WebPartNodeExtension 프로젝트를 하 고 선택 속성.
프로젝트 디자이너가 열립니다.
선택 된 응용 프로그램 탭입니다.
에 있는 기본 네임 스페이스 상자 (C#) 또는 루트 네임 스페이스 (Visual Basic) 상자에 입력 ServerExplorer.SharePointConnections.WebPartNode.
새 노드의 아이콘 만들기
두 개의 아이콘을 만들는 서버 탐색기 확장: 아이콘에 새 웹 파트 갤러리 노드와 각 자식 웹 파트 노드 아래에 대 한 다른 아이콘은 웹 파트 갤러리 노드.이 연습의 뒷부분에서 이러한 아이콘을 노드에 연결 하는 코드를 작성 합니다.
노드의 아이콘을 만들려면
에 프로젝트 디자이너 WebPartNodeExtension 프로젝트에 대 한 선택은 리소스 탭.
링크 선택 **이 프로젝트에는 기본 리소스 파일이 없습니다. 기본 리소스 파일을 만들려면 여기를 클릭하십시오.**를 클릭합니다.
Visual Studio 리소스 파일을 만들고 디자이너에서 열립니다.
디자이너의 위쪽에 있는 화살표를 선택한는 리소스 추가 메뉴에서 명령을 클릭 한 다음 선택 새 아이콘 추가.
입력 WebPartsNode 새 아이콘에 대 한 이름을 지정 하 고 다음 선택은 추가 단추.
새 아이콘이 이미지 편집기에서 열립니다.
디자인을 쉽게 인식할 수 있도록 16x16 버전의 아이콘 편집 합니다.
32X32 버전의 아이콘, 바로 가기 메뉴를 열고 선택 이미지 형식 삭제.
3 단계에서 두 번째 아이콘은 프로젝트 리소스에 추가 하려면 7 단계를 반복 하 고이 아이콘 이름을 WebPart.
솔루션 탐색기에서 리소스 폴더에는 WebPartNodeExtension 프로젝트를 선택 WebPartsNode.ico.
에 속성 창이 열리고는 빌드 작업 선택한 다음 선택 포함 리소스.
WebPart.ico에 대해 마지막 두 단계를 반복합니다.
서버 탐색기에 웹 파트 갤러리 노드 추가
각 SharePoint 사이트 노드에 새 웹 파트 갤러리 노드를 추가하는 클래스를 만듭니다.새 코드를 추가하기 위해 클래스에서 IExplorerNodeTypeExtension 인터페이스를 구현합니다.노드에 새 자식 노드 추가 등 서버 탐색기에서 기존 노드의 동작을 확장하려는 경우 이 인터페이스를 구현합니다.
서버 탐색기에 웹 파트 갤러리 노드를 추가하려면
다음 코드를 붙여 넣습니다는 SiteNodeExtension 코드 파일에는 WebPartNodeExtension 프로젝트입니다.
[!참고]
이 코드를 추가한 후 프로젝트에 컴파일 오류가 발생 해야 합니다.이러한 오류는 이후 단계에서 코드를 추가하면 사라집니다.
Imports System.Collections.Generic Imports System.ComponentModel.Composition Imports Microsoft.SharePoint.Client Imports Microsoft.VisualStudio.SharePoint Imports Microsoft.VisualStudio.SharePoint.Explorer Namespace ServerExplorer.SharePointConnections.WebPartNode ' Export attribute: Enables Visual Studio to discover and load this extension. ' ExplorerNodeType attribute: Indicates that this class extends SharePoint site nodes in Server Explorer. ' SiteNodeExtension class: Represents an extension of SharePoint site nodes in Server Explorer. <Export(GetType(IExplorerNodeTypeExtension))> _ <ExplorerNodeType(ExplorerNodeTypes.SiteNode)> _ Friend Class SiteNodeExtension Implements IExplorerNodeTypeExtension Private siteUrl As System.Uri = Nothing Private Sub Initialize(ByVal nodeType As IExplorerNodeType) _ Implements IExplorerNodeTypeExtension.Initialize ' The NodeChildrenRequested event is raised when the user expands the ' SharePoint site node in Server Explorer. AddHandler nodeType.NodeChildrenRequested, AddressOf NodeChildrenRequested End Sub ' Creates the new Web Part Gallery node with the specified icon. Private Sub NodeChildrenRequested(ByVal Sender As Object, ByVal e As ExplorerNodeEventArgs) ' Get the site URL so that it can be used later to access the site ' by using the SharePoint client object model. siteUrl = e.Node.Context.SiteUrl ' The CreateWebPartNodes argument is a delegate that Visual Studio calls ' to create the child nodes under the Web Part Gallery node. e.Node.ChildNodes.AddFolder("Web Part Gallery", My.Resources.WebPartsNode.ToBitmap(), _ AddressOf CreateWebPartNodes) End Sub ' Creates individual Web Part nodes under the new Web Part Gallery node. Private Sub CreateWebPartNodes(ByVal parentNode As IExplorerNode) ' Use the SharePoint client object model to get items from the Web Part gallery. Dim Context As ClientContext = New ClientContext(siteUrl.AbsoluteUri) Dim WebPartsGallery As List = Context.Web.GetCatalog(CType(ListTemplateType.WebPartCatalog, Integer)) Dim WebParts As ListItemCollection = WebPartsGallery.GetItems(New CamlQuery()) ' Request the FieldValuesAsText property values with the Web Part items. Context.Load(WebParts, Function(listItems) listItems.Include(Function(i) i.FieldValuesAsText)) Context.ExecuteQuery() If WebParts IsNot Nothing Then For Each WebPart As ListItem In WebParts ' Create a new annotation object to store the current Web Part item with the new node. Dim Annotations = New Dictionary(Of Object, Object)() Annotations.Add(GetType(ListItem), WebPart) ' Create the new node for the current Web Part item. parentNode.ChildNodes.Add(WebPartNodeTypeProvider.WebPartNodeTypeId, _ WebPart.FieldValuesAsText.FieldValues("Title"), Annotations) Next End If End Sub End Class End Namespace
using System.Collections.Generic; using System.ComponentModel.Composition; using Microsoft.SharePoint.Client; using Microsoft.VisualStudio.SharePoint; using Microsoft.VisualStudio.SharePoint.Explorer; namespace ServerExplorer.SharePointConnections.WebPartNode { // Enables Visual Studio to discover and load this extension. [Export(typeof(IExplorerNodeTypeExtension))] // Indicates that this class extends SharePoint site nodes in Server Explorer. [ExplorerNodeType(ExplorerNodeTypes.SiteNode)] // Represents an extension of SharePoint site nodes in Server Explorer. internal class SiteNodeExtension : IExplorerNodeTypeExtension { private System.Uri siteUrl = null; public void Initialize(IExplorerNodeType nodeType) { // The NodeChildrenRequested event is raised when the user expands the // SharePoint site node in Server Explorer. nodeType.NodeChildrenRequested += NodeChildrenRequested; } // Creates the new Web Part Gallery node with the specified icon. private void NodeChildrenRequested(object sender, ExplorerNodeEventArgs e) { // Get the site URL so that it can be used later to access the site // by using the SharePoint client object model. siteUrl = e.Node.Context.SiteUrl; // The CreateWebPartNodes argument is a delegate that Visual Studio calls // to create the child nodes under the Web Part Gallery node. e.Node.ChildNodes.AddFolder("Web Part Gallery", Properties.Resources.WebPartsNode.ToBitmap(), CreateWebPartNodes); } // Creates individual Web Part nodes under the new Web Part Gallery node. private void CreateWebPartNodes(IExplorerNode parentNode) { // Use the SharePoint client object model to get items from the Web Part gallery. ClientContext context = new ClientContext(siteUrl.AbsoluteUri); List webPartsGallery = context.Web.GetCatalog((int)ListTemplateType.WebPartCatalog); ListItemCollection webParts = webPartsGallery.GetItems(new CamlQuery()); // Request the FieldValuesAsText property values with the Web Part items. context.Load(webParts, listItems => listItems.Include(i => i.FieldValuesAsText)); context.ExecuteQuery(); if (webParts != null) { foreach (ListItem webPart in webParts) { // Create a new annotation object to store the current Web Part item with the new node. var annotations = new Dictionary<object, object>() { { typeof(ListItem), webPart } }; // Create the new node for the current Web Part item. parentNode.ChildNodes.Add(WebPartNodeTypeProvider.WebPartNodeTypeId, webPart.FieldValuesAsText.FieldValues["Title"], annotations); } } } } }
웹 파트를 나타내는 노드 형식 정의
웹 파트를 나타내는 새 노드 형식을 정의하는 클래스를 만듭니다.Visual Studio 새 노드 형식을 사용 하 여 아래에서 자식 노드를 표시 하는 웹 파트 갤러리 노드.이러한 각 자식 노드는 SharePoint 사이트에서 하나의 웹 파트를 나타냅니다.
새 노드 형식을 정의하기 위해 클래스에서 IExplorerNodeTypeProvider 인터페이스를 구현합니다.서버 탐색기에서 새 노드 형식을 정의하려는 경우 이 인터페이스를 구현합니다.
웹 파트 노드 형식을 정의하려면
다음 코드를 붙여 넣습니다는 WebPartNodeTypeProvider 코드 파일에는 WebPartNodeExtension 프로젝트입니다.
Imports System Imports System.Collections.Generic Imports System.Windows.Forms Imports System.ComponentModel.Composition Imports Microsoft.SharePoint.Client Imports Microsoft.VisualStudio.SharePoint Imports Microsoft.VisualStudio.SharePoint.Explorer Namespace ServerExplorer.SharePointConnections.WebPartNode ' Export attribute: Enables Visual Studio to discover and load this extension. ' ExplorerNodeType attribute: Specifies the ID for this new node type. ' WebPartNodeTypeProvider class: Defines a new node type that represents a Web Part on a SharePoint site. <Export(GetType(IExplorerNodeTypeProvider))> _ <ExplorerNodeType(WebPartNodeTypeProvider.WebPartNodeTypeId)> _ Friend Class WebPartNodeTypeProvider Implements IExplorerNodeTypeProvider Friend Const WebPartNodeTypeId As String = "Contoso.WebPart" Private Sub InitializeType(ByVal typeDefinition As IExplorerNodeTypeDefinition) _ Implements IExplorerNodeTypeProvider.InitializeType typeDefinition.DefaultIcon = My.Resources.WebPart.ToBitmap() typeDefinition.IsAlwaysLeaf = True AddHandler typeDefinition.NodePropertiesRequested, AddressOf NodePropertiesRequested AddHandler typeDefinition.NodeMenuItemsRequested, AddressOf NodeMenuItemsRequested End Sub ' Retrieves properties that are displayed in the Properties window when ' a Web Part node is selected. Private Sub NodePropertiesRequested(ByVal Sender As Object, _ ByVal e As ExplorerNodePropertiesRequestedEventArgs) Dim webPart = e.Node.Annotations.GetValue(Of ListItem)() Dim propertySource = e.Node.Context.CreatePropertySourceObject( _ webPart.FieldValuesAsText.FieldValues) e.PropertySources.Add(propertySource) End Sub Private Sub NodeMenuItemsRequested(ByVal Sender As Object, _ ByVal e As ExplorerNodeMenuItemsRequestedEventArgs) Dim WebPartNodeMenuItem As IMenuItem = e.MenuItems.Add("Display Message") AddHandler WebPartNodeMenuItem.Click, AddressOf MenuItemClick End Sub Private Sub MenuItemClick(ByVal Sender As Object, ByVal e As MenuItemEventArgs) Dim ParentNode As IExplorerNode = TryCast(e.Owner, IExplorerNode) If ParentNode IsNot Nothing Then Dim webPart = ParentNode.Annotations.GetValue(Of ListItem)() MessageBox.Show("You clicked the context menu for the following Web part: " & _ webPart.FieldValuesAsText.FieldValues("Title") + ".", "Web Part Menu Command") End If End Sub End Class End Namespace
using System; using System.Collections.Generic; using System.Windows.Forms; using System.ComponentModel.Composition; using Microsoft.SharePoint.Client; using Microsoft.VisualStudio.SharePoint; using Microsoft.VisualStudio.SharePoint.Explorer; namespace ServerExplorer.SharePointConnections.WebPartNode { // Enables Visual Studio to discover and load this extension. [Export(typeof(IExplorerNodeTypeProvider))] // Specifies the ID for this new node type. [ExplorerNodeType(WebPartNodeTypeProvider.WebPartNodeTypeId)] // Defines a new node type that represents a Web Part on a SharePoint site. internal class WebPartNodeTypeProvider : IExplorerNodeTypeProvider { internal const string WebPartNodeTypeId = "Contoso.WebPart"; public void InitializeType(IExplorerNodeTypeDefinition typeDefinition) { typeDefinition.DefaultIcon = Properties.Resources.WebPart.ToBitmap(); typeDefinition.IsAlwaysLeaf = true; typeDefinition.NodePropertiesRequested += NodePropertiesRequested; typeDefinition.NodeMenuItemsRequested += NodeMenuItemsRequested; } // Retrieves properties that are displayed in the Properties window when // a Web Part node is selected. private void NodePropertiesRequested(object sender, ExplorerNodePropertiesRequestedEventArgs e) { var webPart = e.Node.Annotations.GetValue<ListItem>(); object propertySource = e.Node.Context.CreatePropertySourceObject( webPart.FieldValuesAsText.FieldValues); e.PropertySources.Add(propertySource); } private void NodeMenuItemsRequested( object sender, ExplorerNodeMenuItemsRequestedEventArgs e) { e.MenuItems.Add("Display Message").Click += MenuItemClick; } private void MenuItemClick(object sender, MenuItemEventArgs e) { IExplorerNode parentNode = e.Owner as IExplorerNode; if (parentNode != null) { var webPart = parentNode.Annotations.GetValue<ListItem>(); MessageBox.Show("You clicked the context menu for the following Web part: " + webPart.FieldValuesAsText.FieldValues["Title"] + ".", "Web Part Menu Command"); } } } }
검사점
이 연습의 이전 단계를 통해 웹 파트 갤러리 노드를 위한 모든 코드가 프로젝트에 포함되었습니다.빌드는 WebPartNodeExtension 프로젝트를 오류 없이 컴파일되는지 확인 합니다.
프로젝트를 빌드하려면
- 솔루션 탐색기, 바로 가기 메뉴를 열고는 WebPartNodeExtension 프로젝트를 하 고 선택 빌드.
확장을 배포하기 위한 VSIX 패키지 만들기
확장을 배포하려면 솔루션에서 VSIX 프로젝트를 사용하여 VSIX 패키지를 만듭니다.먼저, 프로젝트에 포함 되어 있는 source.extension.vsixmanifest 파일을 수정 하 여 VSIX 패키지를 구성 합니다.다음 솔루션을 구축 하 여 VSIX 패키지를 만듭니다.
VSIX 패키지를 구성하려면
솔루션 탐색기에서 WebPartNode 열린 프로젝트 source.extension.vsixmanifest 파일이 매니페스트 편집기에서.
Source.extension.vsixmanifest 파일이 모든 VSIX 패키지를 요구 하는 extension.vsixmanifest 파일에 대 한 기반이 됩니다.이 파일에 대한 자세한 내용은 VSIX 확장 스키마 참조를 참조하십시오.
에 있는 제품명 상자에 입력 서버 탐색기에 웹 파트 갤러리 노드.
에 있는 작성자 상자에 입력 Contoso.
에 있는 설명 상자에 입력 에 서버 탐색기에서의 SharePoint 연결 노드에 사용자 지정 웹 파트 갤러리 노드 추가.
에 자산 탭 편집기의 선택은 New 단추.
에 추가 새 자산 대화 상자에 유형 목록에서 선택 Microsoft.VisualStudio.MefComponent.
[!참고]
이 값은 extension.vsixmanifest 파일의 MefComponent 요소에 해당합니다.이 요소는 VSIX 패키지의 확장 어셈블리 이름을 지정합니다.자세한 내용은 MEFComponent Element을 참조하십시오.
에 있는 원본 목록에서 선택 현재 솔루션의 프로젝트에.
에 프로젝트 목록에서 선택 WebPartNodeExtension, 다음 선택은 확인 단추입니다.
메뉴 표시줄에서 선택 빌드, 솔루션 빌드, 및 다음 솔루션이 오류 없이 컴파일되는지 확인 합니다.
WebPartNode 프로젝트의 빌드 출력 폴더에 이제 WebPartNode.vsix 파일이 들어 있는지 확인 합니다.
기본적으로 빌드 출력 경로는 프로젝트 파일이 포함된 폴더 아래에 있는 ..\bin\Debug 폴더입니다.
확장 테스트
이제 서버 갤러리에서 새 웹 파트 갤러리 노드를 테스트할 준비가 되었습니다.Visual Studio 실험적 인스턴스에서 확장 프로젝트를 디버깅 하려면 먼저 시작 합니다.새를 사용 웹 파트 Visual Studio 실험적 인스턴스에서 노드.
확장 디버깅을 시작하려면
Visual Studio 관리자 자격 증명으로 다시 시작 하 고 다음 열에서 WebPartNode 솔루션입니다.
WebPartNodeExtension 프로젝트를 엽니다의 SiteNodeExtension 파일, 코드 및 중단점을 추가 하는 코드 첫 줄에는 NodeChildrenRequested 및 CreateWebPartNodes 메서드.
F5 키를 선택하여 디버깅을 시작합니다.
Visual Studio 서버 explorer\1.0에 대해 %UserProfile%\AppData\Local\Microsoft\VisualStudio\11.0Exp\Extensions\Contoso\Web 파트 갤러리 노드를 확장 하 여 확장을 설치 하 고 Visual Studio 실험 인스턴스를 시작 합니다.프로젝트 항목에 Visual Studio이 인스턴스를 테스트 합니다.
확장을 테스트하려면
Visual Studio 실험적 인스턴스에서 메뉴 표시줄에서 선택 보기, 서버 탐색기.
테스트에 사용할 SharePoint 사이트가 서버 탐색기의 SharePoint 연결 노드 아래에 표시되는지 확인합니다.나열 되어 있지 않으면 다음과 같이 하십시오.
바로 가기 메뉴를 열고 SharePoint 연결, 다음 선택 연결 추가.
에 있는 SharePoint 연결 추가 대화 상자에서 적용할 연결, 및 다음 선택 하려면 SharePoint 사이트에 대 한 URL을 입력의 확인 단추.
개발 컴퓨터의 SharePoint 사이트를 지정하려면 https://localhost를 입력합니다.
사이트의 URL을 표시 하 고 사이트 연결 노드를 확장 한 다음 자식 사이트 노드를 확장 합니다 (예를 들어, 팀 사이트).
코드 Visual Studio 인스턴스를 이전에 설정한 중단점에서 중지 하는지 확인은 NodeChildrenRequested 메서드를 다음 프로젝트에 디버깅을 계속 하려면 F5 키를 선택 합니다.
Visual Studio 실험적 인스턴스에서 확장을 웹 파트 갤러리 노드가 최상위 사이트 노드 아래에 나타납니다.
코드 Visual Studio 인스턴스를 이전에 설정한 중단점에서 중지 하는지 확인은 CreateWebPartNodes 메서드를 다음 프로젝트에 디버깅을 계속 하려면 F5 키를 선택 합니다.
실험 모드의 Visual Studio 인스턴스에서 연결된 사이트의 모든 웹 파트가 서버 탐색기의 웹 파트 갤러리 노드 아래에 표시되는지 확인합니다.
웹 파트에 대 한 바로 가기 메뉴를 열고 선택 속성이.
에 속성 창에서 웹 파트에 대 한 세부 정보가 표시 되는지 확인 하십시오.
서버 탐색기, 바로 가기 메뉴에서 동일한 웹 파트를 열고 선택 메시지 표시.
나타나는 메시지 상자에서 선택 된 확인 단추입니다.
Visual Studio에서 확장 제거
확장 테스트를 마친 후 Visual Studio 제거 합니다.
확장을 제거하려면
Visual Studio 실험적 인스턴스에서 메뉴 표시줄에서 선택 도구, 확장 및 업데이트.
확장 및 업데이트 대화 상자가 열립니다.
확장명 목록에서 선택한 서버 탐색기에 웹 파트 갤러리 노드, 다음 선택은 제거 단추입니다.
나타나는 대화 상자에서 선택 된 예 단추입니다.
선택은 이제 다시 단추 제거를 완료 합니다.
프로젝트 항목도 제거됩니다.
Visual Studio (Visual Studio WebPartNode 솔루션에 열려 있는 인스턴스 및 실험적 인스턴스)을 모두 닫습니다.
참고 항목
작업
아이콘 또는 다른 이미지 만들기(아이콘에 대한 이미지 편집기)