mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
295 B
18 lines
295 B
@echo Off
|
|
set buildRoot="%cd%"
|
|
|
|
ECHO Restoring packages
|
|
dotnet restore
|
|
|
|
ECHO Updating version numbers and generating build script
|
|
cd %~dp0
|
|
dotnet run -- update
|
|
cd %buildRoot%
|
|
|
|
ECHO Building package
|
|
call %~dp0build-inner.cmd
|
|
|
|
ECHO Reset version numbers
|
|
cd %~dp0
|
|
dotnet run -- reset
|
|
cd %buildRoot%
|