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/PublicApiGenerator.Tool/Program.cs
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
namespacePublicApiGenerator.Tool
2
2
{
3
3
usingSystem;
4
+
usingSystem.Collections.Generic;
4
5
usingSystem.Diagnostics;
5
6
usingSystem.IO;
6
7
usingSystem.Linq;
@@ -22,13 +23,14 @@ public static class Program
22
23
/// <param name="projectPath">The path to the csproj that should be used to build the public API.</param>
23
24
/// <param name="package">The package name from which a public API should be created. The tool assumes the package name equals the assembly name. If the assembly name is different specify <paramref name="assembly"/></param>
24
25
/// <param name="packageVersion">The version of the package defined in <paramref name="package"/> to be used.</param>
26
+
/// <param name="packageSource">Package source or feed to use (multiple allowed).</param>
25
27
/// <param name="generatorVersion">The version of the PublicApiGenerator package to use.</param>
26
28
/// <param name="workingDirectory">The working directory to be used for temporary work artifacts. A temporary directory will be created inside the working directory and deleted once the process is done. If no working directory is specified the users temp directory is used.</param>
27
29
/// <param name="outputDirectory">The output directory where the generated public APIs should be moved.</param>
0 commit comments