Module: FluentCommandBuilder::MSBuild::V35
- Defined in:
- lib/fluent_command_builder/command_builders/msbuild_35.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
115 116 117 118 119 120 |
# File 'lib/fluent_command_builder/command_builders/msbuild_35.rb', line 115 def msbuild(project_file=nil) builder = CommandBuilder.new COMMAND_NAME command = MSBuild.new builder, project_file yield builder if block_given? command end |