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
Copy file name to clipboardExpand all lines: src/Compatibility/ApiDiff/Microsoft.DotNet.ApiDiff/DiffGeneratorFactory.cs
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,6 @@ public static class DiffGeneratorFactory
46
46
/// <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>
47
47
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
48
48
/// <param name="addPartialModifier">Indicates whether to add the partial modifier to types.</param>
49
-
/// <param name="hideImplicitDefaultConstructors">Indicates whether to hide implicit default constructors.</param>
50
49
/// <param name="writeToDisk">If <see langword="true"/>, when calling <see cref="IDiffGenerator.RunAsync"/>, the generated markdown files get written to disk, and no item is added to the <see cref="IDiffGenerator.RunAsync"/> dictionary. If <see langword="false"/>, when calling <see cref="IDiffGenerator.RunAsync"/>, the generated markdown files get added to the <see cref="IDiffGenerator.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>
51
50
/// <param name="diagnosticOptions">An optional list of diagnostic options to use when generating the diff.</param>
52
51
/// <returns>A new instance of <see cref="IDiffGenerator"/> that writes the diff to disk.</returns>
@@ -64,7 +63,6 @@ public static IDiffGenerator Create(ILog log,
@@ -81,7 +79,6 @@ public static IDiffGenerator Create(ILog log,
81
79
attributesToExclude,
82
80
apisToExclude,
83
81
addPartialModifier,
84
-
hideImplicitDefaultConstructors,
85
82
writeToDisk,
86
83
diagnosticOptions);
87
84
}
@@ -97,7 +94,6 @@ public static IDiffGenerator Create(ILog log,
97
94
/// <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>
98
95
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
99
96
/// <param name="addPartialModifier">Indicates whether to add the partial modifier to types.</param>
100
-
/// <param name="hideImplicitDefaultConstructors">Indicates whether to hide implicit default constructors.</param>
101
97
/// <param name="diagnosticOptions">An optional list of diagnostic options to use when generating the diff.</param>
102
98
/// <returns>A new instance of <see cref="IDiffGenerator"/> that writes the diff to memory.</returns>
103
99
publicstaticIDiffGeneratorCreate(ILoglog,
@@ -108,7 +104,6 @@ public static IDiffGenerator Create(ILog log,
@@ -47,7 +46,6 @@ internal sealed class FileOutputDiffGenerator : IDiffGenerator
47
46
/// <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
47
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
49
48
/// <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
49
/// <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
50
/// <param name="diagnosticOptions">An optional set of diagnostic options.</param>
@@ -53,7 +52,6 @@ public class MemoryOutputDiffGenerator : IDiffGenerator
53
52
/// <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>
54
53
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
55
54
/// <param name="addPartialModifier">A boolean indicating whether to add the partial modifier to types.</param>
0 commit comments