Method: FluentCommandBuilder::AspnetCompiler::V40#aspnet_compiler

Defined in:
lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb

#aspnet_compiler(target_dir = nil) {|b| ... } ⇒ Object

Yields:

  • (b)


17
18
19
20
21
22
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb', line 17

def aspnet_compiler(target_dir=nil)
  b = UnderlyingBuilder.new @@config
  c = AspnetCompiler.new(b, target_dir)
  yield b if block_given?
  c
end