_Solution::Create Method (String^, String^)
Visual Studio 2015
Creates an empty solution in the specified directory with the specified name.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- Destination
-
Type:
System::String^
Required. The directory in which to create the .sln and .suo (solution) files.
- Name
-
Type:
System::String^
Required. The name to display in Solution Explorer. This is also the base name of the .sln and .suo files.
Sub CreateExample() ' Open a solution before running this example. Dim soln As Solution ' Create a reference to the solution. soln = DTE.Solution ' Create a new solution. soln.Create("c:\temp", "ANewSoln.sln") End Sub
Show: