A .net core tool to print the licenses of a project. This tool support .NET Core and .NET Standard Projects.
dotnet tool install --global dotnet-project-licenses
dotnet tool uninstall --global dotnet-project-licenses
Usage: dotnet-project-licenses [options]
Options:
Option | Description |
---|---|
-i, --input |
Project Folder |
--allowed-license-types |
Simple json file of a text array of allowable licenses, if no file is given, all are assumed allowed |
-j, --json |
(Default: false) Saves licenses list in a json file (licenses.json) |
--include-project-file |
(Default: false) Adds project file path to information when enabled. |
-l, --log-level |
(Default: Error) Sets log level for output display. Options: Error,Warning,Information,Verbose. |
--manual-package-information |
Simple json file of an array of LibraryInfo objects for manually determined packages. |
--licenseurl-to-license-mappings |
Simple json file of Dictinary<string,string> to override default mappings |
--include-transitive |
Include distinct transitive package licenses per project file. |
-o, --output |
(Default: false) Saves as text file (licenses.txt) |
--outfile |
Output filename |
-f, --output-directory |
Set Output Directory/Folder |
--projects-filter |
Simple json file of a text array of projects to skip. Supports Ends with matching such as 'Tests.csproj' |
--packages-filter |
Simple json file of a text array of packages to skip. Or a regular expression defined between two forward slashes '/regex/ '. |
-u, --unique |
(Default: false) Unique licenses list by Id/Version |
-p, --print |
(Default: true) Print licenses. |
--export-license-texts |
Exports the raw license texts |
--help |
Display this help screen. |
--version |
Display version information. |
dotnet-project-licenses --help
dotnet-project-licenses -i projectFolder
Values for the input may include a folder path, a Visual Studio '.sln' file, a '.csproj' or a '.fsproj' file.
dotnet-project-licenses -i projectFolder -u
dotnet-project-licenses -i projectFolder -u -o
dotnet-project-licenses -i projectFolder -o --outfile ../../../another/folder/new-name.txt
dotnet-project-licenses -i projectFolder -u -o -j
dotnet-project-licenses -i projectFolder --export-license-texts
dotnet-project-licenses -i projectFolder -o -j -f ~/Projects/github --outfile ~/Projects/output.json --export-license-texts
dotnet-project-licenses -i projectFolder --export-license-texts --packages-filter '/Microsoft.*/'
docker build . -t nuget-license
docker run -it -v projectName:/tmp nuget-license -i /tmp -f /tmp --export-license-texts -l Verbose