You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git pull || echo Could not pull changes from origin && exit /b
dotnet run --project Versionize --framework net6.0 || echo Exiting. Could not create a new version using versionize && exit /b
git push --follow-tags origin master || echo Exiting. Failed to push changes to repository && exit /b
rm -rf nupkgs || echo ERROR && exit /b
dotnet pack --output nupkgs --include-source --configuration Release --include-symbols || echo Exiting. Could not run dotnet pack. Remove any tags created by versionize && exit /b
for /f "tokens=*" %%a in ('dotnet run --project Versionize --framework net6.0 inspect') do set _VERSION=%%a