-
Notifications
You must be signed in to change notification settings - Fork 64
XBuild
Henrik edited this page Aug 21, 2014
·
1 revision
Like, msbuild, but for Linux/mono.
xbuild :build do |cmd|
cmd.solution = "path/to/solution"
cmd.targets = [:Clean, :Build]
cmd.properties = {:Configuration => "Release"}
end
The location of the solution file.
solution = "path/to/solution"
An array of valid msbuild targets for this solution.
targets = [:Clean, :Build]
A hash of any other valid key/value properties.
properties = {:Configuration => "Release"}
The built-in verbosity of the xbuild application (same as in the msbuild task).
verbosity = "minimal"
(none)