UpdateExtensions.CreateSolutionFolder Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateSolutionFolder(IAsyncUpdatable<ISolutionFolderSnapshot>, String) |
Creates a solution folder to a solution. |
CreateSolutionFolder(IAsyncUpdatable<ISolutionSnapshot>, String) |
Creates a solution folder inside a solution. |
CreateSolutionFolder(IAsyncUpdatable<ISolutionFolderSnapshot>, String)
Creates a solution folder to a solution.
public static Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionFolderSnapshot> CreateSolutionFolder (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionFolderSnapshot> solutionFolders, string name);
static member CreateSolutionFolder : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionFolderSnapshot> * string -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionFolderSnapshot>
<Extension()>
Public Function CreateSolutionFolder (solutionFolders As IAsyncUpdatable(Of ISolutionFolderSnapshot), name As String) As IAsyncUpdatable(Of ISolutionFolderSnapshot)
Parameters
- solutionFolders
- IAsyncUpdatable<ISolutionFolderSnapshot>
A query to retrieve solution folders.
- name
- String
The name of the new solution folder.
Returns
Solution folders updated.
Applies to
CreateSolutionFolder(IAsyncUpdatable<ISolutionSnapshot>, String)
Creates a solution folder inside a solution.
public static Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> CreateSolutionFolder (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> solutions, string name);
static member CreateSolutionFolder : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> * string -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot>
<Extension()>
Public Function CreateSolutionFolder (solutions As IAsyncUpdatable(Of ISolutionSnapshot), name As String) As IAsyncUpdatable(Of ISolutionSnapshot)
Parameters
- solutions
- IAsyncUpdatable<ISolutionSnapshot>
A query to retrieve solutions.
- name
- String
The name of the new solution folder.
Returns
Solution updated.