VCAssemblyReference.project Property
Gets the generic Project object associated with the Visual Basic or Visual C# project. This property is read-only.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
ReadOnly Property project As Object
Object project { get; }
property Object^ project {
Object^ get ();
}
abstract project : Object with get
function get project () : Object
Property Value
Type: System.Object
A project object.
Remarks
The VSProject object is a property of a generic project object. The project property provides access to the general extensibility Project object.
Examples
' Macro Editor
Imports VSLangProj
' Displays whether project has unsaved changes.
Sub IsProjectSaved(ByVal aVSProject As VSProject)
Dim theProject As EnvDTE.Project
theProject = aVSProject.Project
If (theProject.Saved) Then
MsgBox(theProject.Name & " is saved.")
Else
MsgBox(theProject.Name & " is not saved.")
End If
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.