Skip to content

Commit 6fb6bc9

Browse files
committed
Update default build script
1 parent 1498d14 commit 6fb6bc9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

build.cmd

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
msbuild WebJobs.Script.proj /p:Configuration=Release
1+
@ECHO Off
2+
3+
SET Config=%1
4+
IF "%1"=="" (
5+
SET Config="Release"
6+
)
7+
8+
msbuild WebJobs.Script.proj /p:Configuration=%Config%

0 commit comments

Comments
 (0)