Share via


UpdateExtensions.RenameSolutionFolder Method

Definition

Creates a solution folder inside a solution.

public static Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> RenameSolutionFolder (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> solutions, string oldName, string newName);
static member RenameSolutionFolder : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> * string * string -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot>
<Extension()>
Public Function RenameSolutionFolder (solutions As IAsyncUpdatable(Of ISolutionSnapshot), oldName As String, newName As String) As IAsyncUpdatable(Of ISolutionSnapshot)

Parameters

solutions
IAsyncUpdatable<ISolutionSnapshot>

A query to retrieve solutions.

oldName
String

The current name of the solution folder.

newName
String

The new name of the new solution folder.

Returns

Solution updated.

Applies to