diff options
author | Vance Morrison <vancem@microsoft.com> | 2017-08-15 09:18:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-15 09:18:50 -0700 |
commit | ea1a4a57f48b5021f027786743979e61ba505a9d (patch) | |
tree | c144e3e7fd18c45189e542cbb72848334292bd08 /Documentation/building | |
parent | 62daf41d8aa26600a917e595038dad16780ad8ec (diff) | |
download | coreclr-ea1a4a57f48b5021f027786743979e61ba505a9d.tar.gz coreclr-ea1a4a57f48b5021f027786743979e61ba505a9d.tar.bz2 coreclr-ea1a4a57f48b5021f027786743979e61ba505a9d.zip |
Use dashes for build options (#13353)
* Fix IndexOutOfRangeException in PayloadNames property
If you pass an null payload using Write<T>, and in the EventListener then call PayloadNames, it
will throw an IndexOutOfRangeException. It should just return null. This fixes this.
* To be consistant with the other build.cmd files use - for options
* Update docs to track change in option convention
* Updated Unix script to use - for options.
* Fix build break
* Fix Whitespace (review feedback)
* Another fix
Diffstat (limited to 'Documentation/building')
-rw-r--r-- | Documentation/building/windows-instructions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md index 4122711174..1cbd8e3f27 100644 --- a/Documentation/building/windows-instructions.md +++ b/Documentation/building/windows-instructions.md @@ -141,8 +141,8 @@ full rebuild. Build has a number of options that you can learn about using build -?. Some of the more important options are - * skiptests - don't build the tests. This can shorten build times quite a bit, but means you can't run tests. - * release - build the 'Release' build type that does not have extra development-time checking compiled in. + * -skiptests - don't build the tests. This can shorten build times quite a bit, but means you can't run tests. + * -release - build the 'Release' build type that does not have extra development-time checking compiled in. * -rebuild - force the build not to be incremental but to recompile everything. You want this if you are going to do performance testing on your build. |