2021-03-19 08:08:23 +03:00
|
|
|
VERSION=1.0.0-dev
|
|
|
|
DEFAULT_NUPKG_PATH=~/.nuget/packages
|
|
|
|
SRC_DIR=$(pwd)
|
|
|
|
NUPKG=artifacts/packages/Debug/Shipping/
|
|
|
|
#kill all dotnet procs
|
|
|
|
pkill -f dotnet
|
|
|
|
rm -rf artifacts
|
|
|
|
./build.sh
|
2021-03-30 04:12:37 +03:00
|
|
|
dotnet tool uninstall -g Microsoft.dotnet-msidentity
|
2021-03-19 08:08:23 +03:00
|
|
|
cd $SRC_DIR/$NUPKG
|
2021-03-30 04:12:37 +03:00
|
|
|
dotnet tool install -g Microsoft.dotnet-msidentity --add-source $SRC_DIR/$NUPKG --version $VERSION
|
2021-03-19 08:08:23 +03:00
|
|
|
cd "$OLDPWD"
|