Module: FluentCommandBuilder::MSBuild::V20
- Defined in:
- lib/fluent_command_builder/command_builders/msbuild_20.rb
Defined Under Namespace
Classes: MSBuild
Constant Summary collapse
- COMMAND_NAME =
'MSBuild'
Instance Method Summary collapse
Instance Method Details
#msbuild(project_file = nil) {|builder| ... } ⇒ Object
75 76 77 78 79 80 |
# File 'lib/fluent_command_builder/command_builders/msbuild_20.rb', line 75 def msbuild(project_file=nil) builder = CommandBuilder.new COMMAND_NAME command = MSBuild.new builder, project_file yield builder if block_given? command end |