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
/// <param name="log">The logger to use for logging messages.</param>
38
+
/// <param name="beforeAssembliesFolderPath">The folder path containing the assemblies before the changes.</param>
39
+
/// <param name="beforeAssemblyReferencesFolderPath">The folder path containing the assembly references before the changes.</param>
40
+
/// <param name="afterAssembliesFolderPath">The folder path containing the assemblies after the changes.</param>
41
+
/// <param name="afterAssemblyReferencesFolderPath">The folder path containing the assembly references after the changes.</param>
42
+
/// <param name="outputFolderPath">The folder path where the output files will be written.</param>
43
+
/// <param name="beforeFriendlyName">The friendly name for the before version of the assemblies.</param>
44
+
/// <param name="afterFriendlyName">The friendly name for the after version of the assemblies.</param>
45
+
/// <param name="tableOfContentsTitle">The title for the table of contents.</param>
46
46
/// <param name="assembliesToExclude">An optional list of assemblies to avoid showing in the diff.</param>
47
47
/// <param name="attributesToExclude">An optional list of attributes to avoid showing in the diff. If <see langword="null"/>, the default list of attributes to exclude <see cref="DiffGeneratorFactory.DefaultAttributesToExclude"/> is used. If an empty list, no attributes are excluded.</param>
48
48
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
/// <param name="addPartialModifier">A value indicating whether to add the partial modifier to types.</param>
50
+
/// <param name="hideImplicitDefaultConstructors">A value indicating whether to hide implicit default constructors.</param>
51
51
/// <param name="writeToDisk">If <see langword="true"/>, when calling <see cref="RunAsync"/>, the generated markdown files get written to disk, and no item is added to the <see cref="RunAsync"/> dictionary. If <see langword="false"/>, when calling <see cref="RunAsync"/>, the generated markdown files get added to the <see cref="RunAsync"/> dictionary (with the file path as the dictionary key) and none of them is written to disk. This is meant for testing purposes.</param>
52
-
/// <param name="diagnosticOptions"></param>
52
+
/// <param name="diagnosticOptions">An optional set of diagnostic options.</param>
0 commit comments