SolutionFolder.AddFromTemplate 메서드
프로젝트 템플릿을 기반으로 솔루션 폴더에 새 프로젝트를 추가합니다.
네임스페이스: EnvDTE80
어셈블리: EnvDTE80(EnvDTE80.dll)
구문
‘선언
Function AddFromTemplate ( _
FileName As String, _
Destination As String, _
ProjectName As String _
) As Project
Project AddFromTemplate(
string FileName,
string Destination,
string ProjectName
)
Project^ AddFromTemplate(
[InAttribute] String^ FileName,
[InAttribute] String^ Destination,
[InAttribute] String^ ProjectName
)
abstract AddFromTemplate :
FileName:string *
Destination:string *
ProjectName:string -> Project
function AddFromTemplate(
FileName : String,
Destination : String,
ProjectName : String
) : Project
매개 변수
- FileName
형식: System.String
프로젝트 템플릿의 전체 경로입니다.
- Destination
형식: System.String
FileName 콘텐츠를 복사할 디렉터리의 전체 경로입니다.
- ProjectName
형식: System.String
만들려는 새 프로젝트의 이름입니다.
반환 값
형식: EnvDTE.Project
Project 개체입니다.
설명
새 프로젝트 파일 이름이 대상에 이미 있는 경우 이 호출을 사용할 수 없습니다.
예제
이 예제에서는 새 솔루션 폴더를 만들고 기존 파일의 프로젝트를 이 폴더에 추가합니다.또한 템플릿의 프로젝트도 추가합니다.이 예제를 실행하기 전에 주 드라이브(이 예제의 경우 "C:") 아래에 "Projects" 폴더를 만들고 이 폴더에 "ClassLibrary1"이라는 Visual C# 클래스 라이브러리 프로젝트를 만듭니다."Projects" 폴더에 "MyCSProject"라는 폴더도 만들어야 합니다.이 추가 기능을 실행하기 전에 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)
solnFolderAddFromTemplateExample(_applicationObject)
End Sub
Sub solnFolderAddFromTemplateExample(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.")
' Get the project template path for a C# console project.
Dim csTemplatePath As String = soln.GetProjectTemplate _
("Console Application", "CSharp")
' Before running this example, create a
' "Projects\MyCSProject" folder
' off your main drive ("C:" in this example).
Dim prjPath2 As String = "C:\Projects\MyCSProject"
' Add a new C# Console project to the solution folder
' by using the template obtained above.
SF.AddFromTemplate(csTemplatePath, prjPath2, _
"New CSharp Console Project")
MsgBox("Added a new project from template _
to the solution folder.")
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;
solnFolderAddFromTemplateExample(_applicationObject);
}
public void solnFolderAddFromTemplateExample(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;
System.Text.StringBuilder sb = new System.Text.StringBuilder();
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.");
// Get the project template path for a C# console project.
String csTemplatePath = soln.GetProjectTemplate
("Console Application", "CSharp");
// Before running this example, create
// a "Projects\MyCSProject" folder
// off your main drive ("C:" in this example).
String prjPath2 = "C:\\Projects\\MyCSProject";
// Add a new C# Console project to the solution folder
// by using the template obtained above.
SF.AddFromTemplate(csTemplatePath, prjPath2,
"New CSharp Console Project");
MessageBox.Show("Added a new project from
template to the solution folder.");
}
catch(SystemException ex)
{
MessageBox.Show(ex.ToString());
}
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.