We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ca733 commit 6aeae54Copy full SHA for 6aeae54
build-dev.cmd
@@ -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
16
17
+:end
build-dev.ps1
@@ -0,0 +1,9 @@
+# Ensure all submodules are checked out, but do not look for latest tags. (Useful for docs development.)
+git submodule update --init
+Get-ChildItem ./ext -Directory | ForEach-Object {
+ #$path = $_.FullName
+ #git -C "$path" fetch
+}
+docfx
0 commit comments