Solution3.GetProjectItemTemplates メソッド
指定されたプロジェクトのプロジェクト項目テンプレートのコレクションを返します。
名前空間: EnvDTE90
アセンブリ: EnvDTE90 (EnvDTE90.dll 内)
構文
'宣言
Function GetProjectItemTemplates ( _
Language As String, _
CustomDataSignature As String _
) As Templates
Templates GetProjectItemTemplates(
string Language,
string CustomDataSignature
)
Templates^ GetProjectItemTemplates(
String^ Language,
String^ CustomDataSignature
)
abstract GetProjectItemTemplates :
Language:string *
CustomDataSignature:string -> Templates
function GetProjectItemTemplates(
Language : String,
CustomDataSignature : String
) : Templates
パラメーター
- Language
型 : System.String
プロジェクト項目テンプレートの書き込みに使用されている言語。
- CustomDataSignature
型 : System.String
プロジェクト項目テンプレートに関連付けられているメタデータのシグネチャ。
戻り値
型 : EnvDTE90.Templates
すべてのプロジェクト項目テンプレートの名前を含むテンプレート コレクション。
解説
プロジェクト テンプレートは、zip ファイルとして格納されます。このメソッドは、名前と言語でプロジェクトを要求し、テンプレートのパスを返します。
GetProjectItemTemplate のパラメーターは、次のようなさまざまな方法で指定できます。
スマート デバイス Visual Basic 仮想プロジェクトの GUID を Language パラメーターとして、zip ファイルの名前を TemplateName パラメーターとして渡します。
GetProjectItemTemplate("NETCFv2-Class.zip", "{3114F5B0-E435-4bc5-A03D-168E20D9BF83}");
スマート デバイス Visual Basic 仮想プロジェクトの GUID を Language パラメーターとして、文字列 "Class" を TemplateName パラメーターとして渡します。文字列 "Class" はフォルダー階層から派生し、ユーザー インターフェイス (UI) 文字列と呼ばれています。その他の UI 文字列には、"HTML Page" と "Splash Screen" があります。UI 文字列は、ロケールに依存します。zip ファイルを使用すると、最も安全に TemplateName パラメーターを渡すことができます。
GetProjectItemTemplate("Class", "{3114F5B0-E435-4bc5-A03D-168E20D9BF83}");
文字列 "VisualBasic" を Language パラメーターとして、zip ファイルの名前を TemplateName パラメーターとして渡します。NETCFv2-Class.zip はスマート デバイスに対して一意であるため、この操作は有効です。
GetProjectItemTemplate("NETCFv2-Class.zip", "VisualBasic/SmartDevice-NETCFv2");
プロジェクト項目のカスタム テンプレートを作成することもできます。テンプレートを格納するディレクトリを指定するには、[ツール] メニューの [オプション] をクリックします。[オプション] ダイアログ ボックスの左ペインで、[プロジェクトおよびソリューション] をクリックします。各テンプレートのパスを [Visual Studio ユーザー項目テンプレートの場所] ボックスに入力します。既定の格納場所をそのまま使用してもかまいません。
カスタム テンプレートには、次の場所で定義されたファイル名と競合しない一意のファイル名が必要です。
<drive>:\Program Files\Microsoft Visual Studio 9\Common7\IDE\ItemTemplates\Language
8dot3 形式ではなく長いファイル名を使用するようにします。詳細については、「Creating Project and Item Templates」を参照してください。
例
このアドイン コードの実行方法については、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。
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)
SolutionExample(_applicationObject)
End Sub
Sub SolutionExample(ByVal dte As DTE2)
' This function creates a solution and adds a Visual C# Console
' project to it.
Try
Dim soln As Solution3 = CType(DTE.Solution, Solution3)
Dim csTemplatePath As String
' This path must exist on your computer.
' Replace <file path> below with an actual path.
Dim csPrjPath As String = "<file path>"
MsgBox("starting")
' Get the project template path for a C# console project.
csTemplatePath = soln.GetProjectTemplate _
("ConsoleApplication.zip", "CSharp")
' Create a new C# Console project using the template obtained
' above.
soln.AddFromTemplate(csTemplatePath, csPrjPath, _
"New CSharp Console Project", False)
MsgBox("done")
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using System.Windows.Forms;
public void OnConnection(object application,
Extensibility.ext_ConnectMode connectMode, object addInInst,
ref System.Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
// Pass the applicationObject member variable to the code example.
SolutionExample((DTE2)_applicationObject);
}
public void SolutionExample(DTE2 dte)
{
// This function creates a solution and adds a Visual C# Console
// project to it.
try{
Solution3 soln = (Solution3)_applicationObject.Solution;
String csTemplatePath;
// The file path must exist on your computer.
// Replace <file path> below with an actual path.
String csPrjPath = "<file path>";
"<file path>MessageBox.Show("Starting...");
"<file path>"<file path>csTemplatePath =
soln.GetProjectTemplate("ConsoleApplication.zip", "CSharp");
// Create a new C# Console project using the template obtained
// above.
soln.AddFromTemplate(csTemplatePath, csPrjPath,
"New CSharp Console Project", false);
MessageBox.Show("Done!");
}
catch(SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。