You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a new instance of the <see cref="CSharpAssemblyDocumentGenerator"/> class.
@@ -46,6 +47,7 @@ public sealed class CSharpAssemblyDocumentGenerator
46
47
/// <param name="exceptionMessage">The optional exception message to use.</param>
47
48
/// <param name="includeAssemblyAttributes">Whether to include assembly attributes or not.</param>
48
49
/// <param name="metadataReferences">The metadata references to use. The default value is <see langword="null"/>.</param>
50
+
/// <param name="diagnosticOptions">The optional diagnostic options to use. The default value is <see langword="null"/>.</param>
49
51
/// <param name="addPartialModifier">Whether to add the partial modifier or not. The default value is <see langword="true"/>.</param>
50
52
/// <param name="hideImplicitDefaultConstructors">Whether to hide implicit default constructors or not. The default value is <see langword="true"/>.</param>
51
53
publicCSharpAssemblyDocumentGenerator(ILoglog,
@@ -55,6 +57,7 @@ public CSharpAssemblyDocumentGenerator(ILog log,
@@ -97,14 +108,19 @@ public static (AssemblySymbolLoader, Dictionary<string, IAssemblySymbol>) Create
97
108
/// Creates a new instance of the <see cref="AssemblySymbolLoader"/> class.
98
109
/// </summary>
99
110
/// <param name="log">A logger instance for logging message.</param>
111
+
/// <param name="diagnosticOptions">An optional dictionary of specific diagnostic options to use when compiling the loaded assemblies.</param>
100
112
/// <param name="resolveAssemblyReferences">True to attempt to load references for loaded assemblies from the locations specified with <see cref="AddReferenceSearchPaths(string[])"/>. Default is false.</param>
101
113
/// <param name="includeInternalSymbols">True to include all internal metadata for assemblies loaded. Default is false which only includes public and some internal metadata. <seealso cref="MetadataImportOptions"/></param>
0 commit comments