Module: FluentCommandBuilder::MSBuild::V40

Defined in:
lib/fluent_command_builder/command_builders/msbuild_40.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

Yields:

  • (builder)


118
119
120
121
122
123
# File 'lib/fluent_command_builder/command_builders/msbuild_40.rb', line 118

def msbuild(project_file=nil)
  builder = CommandBuilder.new COMMAND_NAME
  command = MSBuild.new builder, project_file
  yield builder if block_given?
  command
end