Add NuGet.BuildTasks
[platform/core/dotnet/build-tools.git] / tools / nuget / nuget
1 #!/bin/bash
2
3 NUGET_DIR=/usr/share/NuGet
4
5 CMD=$1
6
7 CONFIGFILE_OPTION="-configfile $NUGET_DIR/NuGet.Config"
8
9 case $CMD in
10     pack|init|add|locals|mirror|help)
11       CONFIGFILE_OPTION=""
12 esac
13
14 mono $NUGET_DIR/NuGet.exe $@ $CONFIGFILE_OPTION