다음을 통해 공유


SolutionFolder.Parent 속성

Find 개체의 바로 위 부모 개체를 가져옵니다.

네임스페이스:  EnvDTE80
어셈블리:  EnvDTE80(EnvDTE80.dll)

구문

‘선언
ReadOnly Property Parent As Project
    Get
Project Parent { get; }
property Project^ Parent {
    Project^ get ();
}
abstract Parent : Project
function get Parent () : Project

속성 값

형식: EnvDTE.Project
DTE 개체입니다.

설명

Parent 속성은 Find 개체의 바로 위 부모를 반환합니다.

예제

이 예제에서는 새 솔루션 폴더를 만들고 기존 파일의 프로젝트를 이 폴더에 추가합니다. 그런 다음 Parent 개체를 통해 가져온 솔루션 폴더의 모든 프로젝트 항목을 메시지 상자를 사용하여 표시합니다. 이 예제를 실행하기 전에 주 드라이브(이 예제의 경우 "C:") 아래에 "Projects" 폴더를 만들고 이 폴더에 "ClassLibrary1"이라는 Visual C# 클래스 라이브러리 프로젝트를 만듭니다. 또한 이 추가 기능을 실행하기 전에 Visual Studio IDE(통합 개발 환경)에서 프로젝트를 열어야 합니다.

이 예제를 추가 기능으로 실행하는 방법에 대한 자세한 내용은 방법: 자동화 개체 모델 코드의 예제 컴파일 및 실행을 참조하십시오.

Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
 ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
 ByRef custom As Array) Implements IDTExtensibility2.OnConnection
    _applicationObject = CType(application, DTE2)
    _addInInstance = CType(addInInst, AddIn)
    solnFolderParentExample(_applicationObject)
End Sub
Sub solnFolderParentExample(ByVal dte As DTE2)
    ' Before running this example, create a "Projects" folder
    ' off your main drive (C: in this example), and create a C# 
    ' class library project, named ClassLibrary1 in that folder.
    Dim soln As Solution2 = CType(_applicationObject.Solution _
    , Solution2)
    Dim prj As Project
    Dim sb As New System.Text.StringBuilder
    Dim SF As SolutionFolder
    Try
        Dim prjPath As String = _
         "C:\Projects\ClassLibrary1\ClassLibrary1\ClassLibrary1.csproj"
        ' Open a project in the Visual Studio IDE before 
        ' running this add-in.
        ' Add a solution folder.
        prj = soln.AddSolutionFolder("A new soln folder")
        SF = CType(prj.Object, SolutionFolder)
        ' Add a project to the new solution folder.
        SF.AddFromFile(prjPath)
        MsgBox("Added a new solution folder that contains a _
        C# project named ClassLibrary1.")
        MsgBox("The name of the solution folder parent is: "  _
        & SF.Parent.Name)
        Dim tempStr As String
        tempStr = ""
        For Each temp As ProjectItem In SF.Parent.ProjectItems
            tempStr = tempStr & temp.Name & vbCr
        Next
        MsgBox("The names of the project items in the solution _
        folder SF are:" & vbCr & tempStr)
    Catch ex As System.Exception
        MsgBox(ex.ToString)
    End Try
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application, 
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    solnFolderParentExample(_applicationObject);
}
public void solnFolderParentExample(DTE2 dte)
{
    // Before running this example, create a "Projects" folder
    // off your main drive (C: in this example), and create a C# 
    // class library project, named ClassLibrary1 in that folder.
    Solution2 soln = (Solution2)_applicationObject.Solution;
    Project prj;
    SolutionFolder SF;
    try
    {
        String prjPath =
 "C:\\Projects\\ClassLibrary1\\ClassLibrary1\\ClassLibrary1.csproj";
        // Open a project in the Visual Studio IDE before 
        // running this add-in.
        // Add a solution folder.
        prj = soln.AddSolutionFolder("A new soln folder");
        SF = (SolutionFolder)prj.Object;
        // Add a project to the new solution folder.
        SF.AddFromFile(prjPath);
        MessageBox.Show("Added a new solution folder that contains a 
C# project named ClassLibrary1.");
        MessageBox.Show("The name of the solution folder parent is: " 
+ SF.Parent.Name);
        String tempStr = null;
        foreach(ProjectItem temp in SF.Parent.ProjectItems)
        {
            tempStr = tempStr + temp.Name + "\n";
        }
        MessageBox.Show("The names of the project items in the 
solution folder SF are:" + "\n" + tempStr);
    }
    catch(SystemException ex)
    {
        MessageBox.Show(ex.ToString());
    }
}

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

SolutionFolder 인터페이스

EnvDTE80 네임스페이스