Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the generic Project object associated with the Visual Basic or Visual C# project.
Namespace: VSLangProj80
Assembly: VSLangProj80 (in VSLangProj80.dll)
Syntax
'Declaration
ReadOnly Property Project As Project
Project Project { get; }
property Project^ Project {
Project^ get ();
}
abstract Project : Project
function get Project () : Project
Property Value
Type: EnvDTE.Project
A Project object.
Implements
Remarks
The VSProject2 object is a property of a generic Project object. The Project property provides access to the general extensibility Project object.
Examples
To run this example as an add-in, see How to: Compile and Run the Automation Object Model Code Examples. Open a Visual Basic or Visual C# project before running this example.
[Visual Basic]
Public Sub OnConnection(ByVal application As Object, ByVal_
connectMode As ext_ConnectMode, ByVal addInInst As Object, ByRef _
custom As Array) Implements IDTExtensibility2.OnConnection
applicationObject = CType(application, DTE2)
addInInstance = CType(addInInst, AddIn)
VSProjectSavedExample(applicationObject)
End Sub
Sub VSProjectSavedExample(ByVal dte As DTE2)
Dim aProject As Project
Dim aVSProject As VSProject2
aProject = applicationObject.Solution.Projects.Item(1)
aVSProject = CType(applicationObject.Solution.Projects.Item(1)._
Object, VSProject2)
IsProjectSaved(aVSProject)
End Sub
' Displays whether project has unsaved changes.
Sub IsProjectSaved(ByVal aVSProject As VSProject2)
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
[C#]
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application, ext_ConnectMode
connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
VSProjectSavedExample((DTE2)applicationObject);
}
public void VSProjectSavedExample( DTE2 dte )
{
Project aProject = null;
VSProject aVSProject = null;
aProject = applicationObject.Solution.Projects.Item( 1 );
aVSProject = ( ( VSProject )( applicationObject.Solution.Projects.
Item( 1 ).Object ) );
IsProjectSaved( aVSProject );
}
// Displays whether project has unsaved changes.
public void IsProjectSaved( VSProject aVSProject )
{
EnvDTE.Project theProject = null;
theProject = aVSProject.Project;
if ( ( theProject.Saved ) )
{
MessageBox.Show( theProject.Name + " is saved.");
}
else
{
MessageBox.Show( theProject.Name + " is not saved.");
}
}
.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.