Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions scripts/install-msidentity.cmd
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
set VERSION=1.0.0-dev
set NUPKG=artifacts\packages\Debug\Shipping\

pushd %~dp0
call cd ..
set SRC_DIR=%cd%
set NUPKG=artifacts/packages/Debug/Shipping/

call taskkill /f /im dotnet.exe
call rd /Q /S artifacts

call dotnet build MSIdentityScaffolding.slnf
call dotnet pack MSIdentityScaffolding.slnf
call dotnet tool uninstall -g Microsoft.dotnet-msidentity

call cd %SRC_DIR%/%NUPKG%
call dotnet tool install -g Microsoft.dotnet-msidentity --add-source %SRC_DIR%\%NUPKG% --version %VERSION%
call cd %SRC_DIR%
popd