VCProject.RootNamespace Property

Gets the root namespace for the specified project.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

'Declaration
Property RootNamespace As String
    Get
    Set
string RootNamespace { get; set; }
property String^ RootNamespace {
    String^ get ();
    void set (String^ value);
}
abstract RootNamespace : string with get, set
function get RootNamespace () : String
function set RootNamespace (value : String)

Property Value

Type: System.String
The root namespace for the specified project. RootNamespace is used to determine proper naming for managed resource DLLs.

Examples

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a 
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim sln As Solution
        Dim prj As VCProject
        prj = DTE.Solution.Item(1).Object
        MsgBox("Root namespace " & prj.RootNamespace)
    End Sub
End Module

.NET Framework Security

See Also

Reference

VCProject Interface

Microsoft.VisualStudio.VCProjectEngine Namespace