Sha256: 3e5fbe9449fe54017d5e04b9173ec93ba5f98c90c043a5ba995a568887e1b379

Contents?: true

Size: 587 Bytes

Versions: 11

Compression:

Stored size: 587 Bytes

Contents

require 'ostruct'
require 'albacore/config/netversion'
require 'albacore/support/openstruct'

module Configuration
  module CSC
    include Configuration::NetVersion
    include Albacore::Configuration

    def self.cscconfig
      @config ||= OpenStruct.new.extend(OpenStructToHash).extend(CSC)
    end

    def csc
      config ||= CSC.cscconfig
      yield(config) if block_given?
      config
    end

    def self.included(mod)
      self.cscconfig.use :net40
    end

    def use(netversion)
      self.command = File.join(get_net_version(netversion), "csc.exe")
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
albacore-0.3.6 lib/albacore/config/cscconfig.rb
albacore-1.0.0.rc.2 lib/albacore/config/cscconfig.rb
albacore-1.0.0.rc.1 lib/albacore/config/cscconfig.rb
albacore-0.3.5 lib/albacore/config/cscconfig.rb
albacore-0.3.4 lib/albacore/config/cscconfig.rb
albacore-0.3.3 lib/albacore/config/cscconfig.rb
albacore-0.3.2 lib/albacore/config/cscconfig.rb
albacore-0.3.1 lib/albacore/config/cscconfig.rb
albacore-0.3.0 lib/albacore/config/cscconfig.rb
albacore-0.2.7 lib/albacore/config/cscconfig.rb
albacore-0.2.6 lib/albacore/config/cscconfig.rb