Skip to content

Commit 6aeae54

Browse files
committed
add build-dev.cmd + build-dev.ps1
1 parent d0ca733 commit 6aeae54

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

build-dev.cmd

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@echo Off
2+
3+
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '.\build-dev.ps1'"
4+
5+
if not "%errorlevel%"=="0" goto failure
6+
7+
:success
8+
ECHO successfully built project
9+
REM exit 0
10+
goto end
11+
12+
:failure
13+
ECHO failed to build.
14+
REM exit -1
15+
goto end
16+
17+
:end

build-dev.ps1

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Ensure all submodules are checked out, but do not look for latest tags. (Useful for docs development.)
2+
git submodule update --init
3+
4+
Get-ChildItem ./ext -Directory | ForEach-Object {
5+
#$path = $_.FullName
6+
#git -C "$path" fetch
7+
}
8+
9+
docfx

0 commit comments

Comments
 (0)