Created
April 21, 2015 08:51
-
-
Save sliekens/023781481a60c7bd0444 to your computer and use it in GitHub Desktop.
build.rsp
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
# The build.rsp response file is a text file that contains MSBuild.exe command line switches. | |
# Each switch can be on a separate line or all switches can be on one line. | |
# Comment lines are prefaced with a # symbol. | |
# The @ switch is used to pass another response file. | |
# More information: | |
# https://msdn.microsoft.com/en-us/library/ms164311.aspx | |
# /nologo | |
# | |
# Don't display the startup banner or the copyright message. | |
/nologo | |
# /detailedsummary | /ds | |
# | |
# Show detailed information at the end of the build log about the configurations | |
# that were built and how they were scheduled to nodes. | |
/detailedsummary | |
# Configure parallel builds | |
# /m[axcpucount][:number] | |
/maxcpucount | |
# /verbosity:q[uiet] | m[inimal] | n[ormal] | d[etailed] | diag[nostic]. | |
# | |
# Configure progress reporting | |
/verbosity:n | |
# /ignoreprojectextensions:extensions | /ignore: extensions | |
# | |
# Ignore the specified extensions when determining which project file to build. | |
# Use a semicolon or a comma to separate multiple extensions. | |
/ignoreprojectextensions:.sln | |
# @file | |
# | |
# Insert command-line switches from a text file. | |
# If you have multiple files, you specify them separately. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment