Skip to content

Instantly share code, notes, and snippets.

@sliekens
Created April 21, 2015 08:51
Show Gist options
  • Save sliekens/023781481a60c7bd0444 to your computer and use it in GitHub Desktop.
Save sliekens/023781481a60c7bd0444 to your computer and use it in GitHub Desktop.
build.rsp
# 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