Astyle.

IndentNamespaces Property

Summary

true if namespace statements should be indented.
    The default:

    namespace foospace
    {
    class Foo
    {
        public:
            Foo();
            virtual ~Foo();
    };
    }

    becomes:

    namespace foospace
    {
        class Foo
        {
            public:
                Foo();
                virtual ~Foo();
        };
    }
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks
Containing Type
Astyle

Syntax

[TaskAttribute("indent-namespaces", Required = false)]
[BooleanValidator()]
public bool IndentNamespaces { get; set; }

Attributes

Type Description
TaskAttribute
BooleanValidator

Value

Type Description
bool