forked from SignalR/SignalR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change case of build folder in build commands.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
export EnableNuGetPackageRestore="true" | ||
xbuild Build/Build.proj /t:GoMono | ||
xbuild build/Build.proj /t:GoMono |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
all: | ||
xbuild Build/Build.proj /t:GoMono | ||
xbuild build/Build.proj /t:GoMono | ||
|
||
compile: | ||
xbuild Build/Build.proj /t:Build | ||
xbuild build/Build.proj /t:Build | ||
|
||
# For some odd reason, this hangs after running all the tests so | ||
# ctrl + c might be needed to break out after tests run. | ||
tests: compile | ||
xbuild Build/Build.proj /t:RunTests | ||
xbuild build/Build.proj /t:RunTests | ||
|
||
functionaltests: compile | ||
xbuild Build/Build.proj /t:RunFunctionalTests | ||
xbuild build/Build.proj /t:RunFunctionalTests |