VCProject.ProjectDirectory Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the directory that contains the project file.
public:
property System::String ^ ProjectDirectory { System::String ^ get(); };
public:
property Platform::String ^ ProjectDirectory { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(802)]
public string ProjectDirectory { [System.Runtime.InteropServices.DispId(802)] get; }
[<System.Runtime.InteropServices.DispId(802)>]
[<get: System.Runtime.InteropServices.DispId(802)>]
member this.ProjectDirectory : string
Public ReadOnly Property ProjectDirectory As String
Property Value
The name of the directory that contains the project file.
- Attributes
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
The following example uses the ProjectDirectory property in the integrated development environment (IDE):
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
MsgBox(prj.ProjectDirectory)
End Sub
End Module