diff options
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-x | runprebuild.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/runprebuild.sh b/runprebuild.sh new file mode 100755 index 0000000..8c18db6 --- /dev/null +++ b/runprebuild.sh | |||
@@ -0,0 +1,32 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | case "$1" in | ||
4 | |||
5 | 'clean') | ||
6 | |||
7 | mono bin/Prebuild.exe /clean | ||
8 | |||
9 | ;; | ||
10 | |||
11 | |||
12 | 'autoclean') | ||
13 | |||
14 | echo y|mono bin/Prebuild.exe /clean | ||
15 | |||
16 | ;; | ||
17 | |||
18 | |||
19 | 'vs2010') | ||
20 | |||
21 | mono bin/Prebuild.exe /target vs2010 | ||
22 | |||
23 | ;; | ||
24 | |||
25 | *) | ||
26 | |||
27 | mono bin/Prebuild.exe /target nant | ||
28 | mono bin/Prebuild.exe /target vs2010 | ||
29 | |||
30 | ;; | ||
31 | |||
32 | esac | ||