3 SCRIPT_FILE=$(readlink -f $0)
4 SCRIPT_DIR=$(dirname $SCRIPT_FILE)
7 OUTDIR=$SCRIPT_DIR/Artifacts
8 NUGET_CMD="mono $SCRIPT_DIR/tools/NuGet.exe"
11 echo "Usage: $0 [options] [args]"
13 echo " -h, --help Show this usages message"
14 echo " -b, --build [module] Build a module"
15 echo " -f, --full Build all modules in src/ directory. (pkg/Tizen.NET.Private.sln)"
16 echo " -d, --dummy Build dummy modules"
17 echo " -p, --pack Make nuget packages"
18 echo " -c, --clean Clean all artifacts"
22 if [ -d /nuget ]; then
23 NUGET_SOURCE_OPT="--source /nuget"
26 dotnet restore $PROJ $NUGET_SOURCE_OPT
27 dotnet build $PROJ --no-restore --configuration=Release $@
32 LIST=$(find $SCRIPT_DIR -type d -a -name bin -o -name obj)
40 echo "No module specified."
43 dotnet_build $SCRIPT_DIR/src/$1 --output=$OUTDIR/bin
47 dotnet_build $SCRIPT_DIR/pkg/Tizen.NET.Private.sln --output=$OUTDIR/bin
51 VERSION_FILE=$OUTDIR/Version.txt
52 if [ -f $VERSION_FILE ]; then
53 NUGET_VERSION_PREFIX=$(cat $VERSION_FILE | grep Prefix | cut -d: -f2 | sed 's/\r$//')
54 NUGET_VERSION_SUFFIX=$(cat $VERSION_FILE | grep Suffix | cut -d: -f2 | sed 's/\r$//')
55 NUGET_VERSION_OPT="-Version $NUGET_VERSION_PREFIX-$NUGET_VERSION_SUFFIX"
57 $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.Private.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR
58 $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR
62 dotnet_build $SCRIPT_DIR/pkg/Tizen.NET.Dummy.csproj
65 OPTS=`getopt -o hcbfpd --long help,clean,build,full,pack,dummy -n 'build' -- "$@"`
66 if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; usage; exit 1 ; fi
78 -h|--help) FLAG_HELP=true; shift ;;
79 -b|--build) FLAG_BUILD=true; shift ;;
80 -f|--full) FLAG_FULL=true; shift ;;
81 -d|--dummy) FLAG_DUMMY=true; shift ;;
82 -p|--pack) FLAG_PACK=true; shift ;;
83 -c|--clean) FLAG_CLEAN=true; shift ;;
89 if $FLAG_HELP; then usage; exit 0; fi
90 if $FLAG_CLEAN; then cmd_clean; exit 0; fi
91 if $FLAG_FULL; then cmd_full_build; exit 0; fi
92 if $FLAG_BUILD; then cmd_build $@; exit 0; fi
93 if $FLAG_PACK; then cmd_pack $@; exit 0; fi
94 if $FLAG_DUMMY; then cmd_dummy_build; exit 0; fi