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.
25 lines
314 B
25 lines
314 B
|
|
|
|
@echo Off
|
|
REM include project configs
|
|
call %~dp0\config.cmd
|
|
|
|
set buildRoot="%cd%"
|
|
|
|
ECHO Reseting build version numbers
|
|
for %%s in (%projects%) do (
|
|
cd %%s
|
|
ECHO %GitVersion_NuGetVersion%
|
|
dotnet version "1.0.0-*"
|
|
cd %buildRoot%
|
|
)
|
|
|
|
:success
|
|
REM exit 0
|
|
goto end
|
|
|
|
:failure
|
|
REM exit -1
|
|
goto end
|
|
|
|
:end
|
|
|