Module: FluentCommandBuilder::MSBuild
- Defined in:
- lib/fluent_command_builder/command_builders/msbuild.rb,
lib/fluent_command_builder/command_builders/msbuild_20.rb,
lib/fluent_command_builder/command_builders/msbuild_30.rb,
lib/fluent_command_builder/command_builders/msbuild_35.rb,
lib/fluent_command_builder/command_builders/msbuild_40.rb
Defined Under Namespace
Modules: V20, V30, V35, V40
Constant Summary
collapse
- COMMAND_NAME =
'MSBuild'
Class Method Summary
collapse
Class Method Details
.version(path = nil) ⇒ Object
9
10
11
12
|
# File 'lib/fluent_command_builder/command_builders/msbuild.rb', line 9
def self.version(path=nil)
executable = path ? File.join(path, COMMAND_NAME) : COMMAND_NAME
GetVersion[executable]
end
|