quino pack
Examples
The following commmand creates packages with symbols for all projects (SDK or Framework) in the current folder or any contained folders in the nuget/
folder.
quino pack -o nuget/ -s
Purpose
Many products are transitioning from targeting only .NET Framework to targeting a mix of .NET Standard, .NET Core and .NET Framework.
Products must use nuget
to create packages for .NET Framework projects and dotnet pack
for .NET Standard and Core projects. In order to simplify deployment, this command provides a single syntax for all projects.
Function
Anyone can use this tool to create packages for any number of projects.
Command line
Name | Values/Example | Description |
---|---|---|
-h , --help |
Shows the full command-line help | |
-p , --path |
src/libs |
Root path for which to process projects |
-o , --output |
packages |
The path to the output folder |
-n , --nuget |
C:\tools\nuget.exe |
Path to a nuget executable (only used for .NET Framework projects) |
-s , --symbols |
A flag indicating that symbols/sources are to be included in the packages. |