This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Den Delimarsky
committed
Mar 10, 2017
1 parent
c3ddd5e
commit 2b1bc03
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
# nue | ||
NuGet Extractor | ||
|
||
Tool to sort assemblies shipped in NuGet packages into their correct moniker folders. | ||
|
||
## To Run | ||
|
||
`nue.exe PATH_TO_CSV_WITH_PACKAGES PATH_TO_OUTPUT_FOLDER PATH_TO_MAPPING_FILE` | ||
|
||
* `PATH_TO_CSV_WITH_PACKAGES` - represents the path to the CSV file that contains a list of packages that need to be extracted. CSV should be in the form of _PACKAGE,VERSION_. | ||
* `PATH_TO_OUTPUT_FOLDER` - where to dump the binaries. | ||
* `PATH_TO_MAPPING_FILE` - path to CSV file that contains mapping of [TFMs](https://docs.microsoft.com/en-us/nuget/schema/target-frameworks) to target folder names in the form of _TFM,FOLDER_NAME_. | ||
|
||
The output will contain a `_pacman` folder, that contains the full set of packages with the related metadata. | ||
|
||
Every other folder in the output directory will contain TFM-based DLLs. | ||
|
||
 |