Solution3 Interface

 

Represents all projects and solution-wide properties in the integrated development environment (IDE). Supersedes Solution and Solution2.

Namespace:   EnvDTE90
Assembly:  EnvDTE90 (in EnvDTE90.dll)

[GuidAttribute("DF23915F-FDA3-4DD5-9CAA-2E1372C2BB16")]
public interface class Solution3 : Solution2

NameDescription
System_CAPS_pubpropertyAddIns

Gets an AddIns collection, which contains all currently available add-ins associated with the solution.

System_CAPS_pubpropertyCount

Gets a value indicating the number of projects in the solution.

System_CAPS_pubpropertyDTE

Gets the top-level extensibility object.

System_CAPS_pubpropertyExtender[String^]

Gets the requested Extender object if it is available for this object.

System_CAPS_pubpropertyExtenderCATID

Gets the Extender category ID (CATID) for the object.

System_CAPS_pubpropertyExtenderNames

Gets a list of available Extenders for the object.

System_CAPS_pubpropertyFileName

This API supports the product infrastructure and is not intended to be used directly from your code. Gets the file name.

System_CAPS_pubpropertyFullName

Gets the full path and name of the object's file.

System_CAPS_pubpropertyGlobals

Gets the Globals object that contains any variable values that may be saved in the solution (.sln) file, the project file, or the user's profile data.

System_CAPS_pubpropertyIsDirty

This API supports the product infrastructure and is not intended to be used directly from your code. Determines whether the solution is dirty (modified but not saved).

System_CAPS_pubpropertyIsOpen

Gets whether a solution is open.

System_CAPS_pubpropertyParent

Gets the immediate parent object of a Solution2 object.

System_CAPS_pubpropertyProjects

Gets a collection of the projects currently in the solution.

System_CAPS_pubpropertyProperties

Gets a collection of all properties that pertain to the Solution2 object.

System_CAPS_pubpropertySaved

Gets or sets a value indicating whether a solution has not been modified since last being saved or opened.

System_CAPS_pubpropertySolutionBuild

Gets the SolutionBuild object for the solution, which represents the root of the build automation model at the solution level.

System_CAPS_pubpropertyTemplatePath[String^]

Superseded by GetProjectTemplate.

NameDescription
System_CAPS_pubmethodAddFromFile(String^, Boolean)

Adds a project to the solution that is based on a project file already stored in the system.

System_CAPS_pubmethodAddFromTemplate(String^, String^, String^, Boolean)

Copies an existing project file, and any items or subdirectories it contains, to the specified location and adds it to the solution.

System_CAPS_pubmethodAddSolutionFolder(String^)

Adds a solution folder to a ProjectItems collection.

System_CAPS_pubmethodClose(Boolean)

Closes the current solution.

System_CAPS_pubmethodCreate(String^, String^)

Creates an empty solution in the specified directory with the specified name.

System_CAPS_pubmethodFindProjectItem(String^)

Locates an item in a project.

System_CAPS_pubmethodGetEnumerator()

Returns an enumeration for items in a collection.

System_CAPS_pubmethodGetProjectItemTemplate(String^, String^)

Returns a path to the indicated project item template.

System_CAPS_pubmethodGetProjectItemTemplates(String^, String^)

Returns a collection of project item templates for the specified project.

System_CAPS_pubmethodGetProjectTemplate(String^, String^)

Returns a path to the specified project template.

If a template has a RequiredFrameworkVersion element higher than 4.0, you should provide the version in the call so that the search for the template will find a match. For example, instead of calling GetProjectTemplate("Extensibility\\1033\\VSIXProject.zip", "CSharp"); call GetProjectTemplate("Extensibility\\1033\\VSIXProject.zip|FrameworkVersion=4.5", "CSharp");.

System_CAPS_pubmethodItem(Object^)

Returns an indexed member of a Projects collection.

System_CAPS_pubmethodOpen(String^)

Opens a specified solution.

System_CAPS_pubmethodProjectItemsTemplatePath(String^)

Superseded by GetProjectItemTemplate.

System_CAPS_pubmethodRemove(Project^)

Removes the specified project from the solution.

System_CAPS_pubmethodSaveAs(String^)

Saves the solution.

The Solution3 object is a collection of all projects in the current instance of the IDE and all solution-wide properties, such as build configurations. The Solution3 object contains a project element for every project, whether it is a wrapped project, a subproject, or a top-level project.

Reference this object by using DTE.Solution. To refer to virtual projects, such as MiscFiles or SolutionItems, use Solution3.Item(EnvDTE.Constants.vsProjectKindMisc) or Solution3.Item(EnvDTE.Constants.vsProjectKindSolutionItems).

No code example is currently available or this language may not be supported.
Return to top
Show: