Sha256: 87b58f71e4488585959554f1aca03f428dc53eef68bc369e04e8e0d91588097a
Contents?: true
Size: 736 Bytes
Versions: 6
Compression:
Stored size: 736 Bytes
Contents
module Rake::Funnel::Tasks::MSBuildSupport class BuildTool class << self def find if Rake::Win32.windows? require 'win32/registry' %w{12.0 4.0 3.5 2.0}.collect { |version| msbuild = nil key = "SOFTWARE\\Microsoft\\MSBuild\\ToolsVersions\\#{version}" begin Win32::Registry::HKEY_LOCAL_MACHINE.open(key) do |reg| candidate = "#{reg['MSBuildToolsPath']}\\msbuild.exe" msbuild = candidate if File.exists?(candidate) end rescue end msbuild }.compact.first else 'xbuild' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems