_Solution::TemplatePath Property (String^)
Visual Studio 2015
Gets the full path and name of the directory that contains templates for the specified type of project.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- ProjectType
-
Type:
System::String^
Required. A GUID that identifies the type of project, from PrjKind.
Property Value
Type: System::String^The full path and name of the directory that contains templates for the specified type of project.
For example, TemplatePath(vsVBProjectKind) returns the path <Visual Studio root installation directory>\VBProjects.
TemplatePath is similar to ProjectItemsTemplatePath except that it is for projects rather than templates.
Sub TemplatePathExample() ' Open a Visual Basic solution before running this example. Dim soln As Solution ' Create a reference to the solution. soln = DTE.Solution ' List the path to the templates for the project type. MsgBox(soln.TemplatePath(DTE.Solution.Item(1).Kind)) End Sub
Show: