SolutionFolder.AddFromTemplate メソッド

更新 : 2007 年 11 月

プロジェクト テンプレートに基づいて、新しいプロジェクトをソリューション フォルダに追加します。

名前空間 :  EnvDTE80
アセンブリ :  EnvDTE80 (EnvDTE80.dll 内)

構文

'宣言
Function AddFromTemplate ( _
    FileName As String, _
    Destination As String, _
    ProjectName As String _
) As Project
'使用
Dim instance As SolutionFolder
Dim FileName As String
Dim Destination As String
Dim ProjectName As String
Dim returnValue As Project

returnValue = instance.AddFromTemplate(FileName, _
    Destination, ProjectName)
Project AddFromTemplate(
    string FileName,
    string Destination,
    string ProjectName
)
Project^ AddFromTemplate(
    [InAttribute] String^ FileName, 
    [InAttribute] String^ Destination, 
    [InAttribute] String^ ProjectName
)
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# クラス ライブラリ プロジェクトを作成します。"MyCSProject" という名前のフォルダを "Projects" フォルダ内に作成する必要もあります。このアドインを実行する前に、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());
    }
}

アクセス許可

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

SolutionFolder インターフェイス

SolutionFolder メンバ

EnvDTE80 名前空間