_DTE.Solution Property
Gets the Solution object that represents all open projects in the current instance of the environment and allows access to the build objects.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property Solution As Solution
Solution Solution { get; }
property Solution^ Solution {
Solution^ get ();
}
abstract Solution : Solution with get
function get Solution () : Solution
Property Value
Type: EnvDTE.Solution
A Solution object.
Examples
Sub SolutionExample()
MsgBox(DTE.Solution.FullName)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.