Browse Source

Use the OutputNamespace property for generating the top-level namespace.

pull/1/head
triton 12 years ago
parent
commit
dc4d509cc2
  1. 2
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

2
src/Generator/Generators/CSharp/CSharpTextTemplate.cs

@ -103,7 +103,7 @@ namespace Cxxi.Generators.CSharp @@ -103,7 +103,7 @@ namespace Cxxi.Generators.CSharp
if (Options.GenerateLibraryNamespace)
{
WriteLine("namespace {0}", SafeIdentifier(Driver.Options.LibraryName));
WriteLine("namespace {0}", SafeIdentifier(Driver.Options.OutputNamespace));
WriteStartBraceIndent();
}

Loading…
Cancel
Save