From 27cd76ebc90e78ca460656223bf3ed23ce6f568f Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Tue, 17 Nov 2020 21:48:21 +0000 Subject: [PATCH] Document recently added GenerationOutputMode option. --- src/Generator/Options.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Generator/Options.cs b/src/Generator/Options.cs index 441f04a2..46d05c8a 100644 --- a/src/Generator/Options.cs +++ b/src/Generator/Options.cs @@ -155,6 +155,12 @@ namespace CppSharp } } + /// + /// Sets the generation output mode which affects how output files are + /// generated, either as one output file per binding module, or as one + /// output file for each input translation unit. + /// Note: Currently only available for C# generator. + /// public GenerationOutputMode GenerationOutputMode { get; set; } = GenerationOutputMode.FilePerModule;