Module: FluentCommandBuilder::MSBuild::V20
- Defined in:
- lib/fluent_command_builder/command_builders/msbuild_20.rb
Defined Under Namespace
Classes: MSBuild
Constant Summary collapse
- VERSION =
'2.0'- @@config =
CommandBuilderConfig.new FluentCommandBuilder::MSBuild::COMMAND_NAME, VERSION
Instance Method Summary collapse
Instance Method Details
#configure_msbuild {|@@config| ... } ⇒ Object
12 13 14 15 16 |
# File 'lib/fluent_command_builder/command_builders/msbuild_20.rb', line 12 def configure_msbuild yield @@config @@config.validate_path @@config.validate_version end |
#msbuild(project_file = nil) {|b| ... } ⇒ Object
17 18 19 20 21 22 |
# File 'lib/fluent_command_builder/command_builders/msbuild_20.rb', line 17 def msbuild(project_file=nil) b = UnderlyingBuilder.new @@config c = MSBuild.new(b, project_file) yield b if block_given? c end |