class Albacore::VbProject

Public Class Methods

new(project_path) click to toggle source
Calls superclass method Albacore::Project::new
# File lib/albacore/vb_project.rb, line 4
def initialize(project_path)
  super(project_path)
  sanity_checks
end

Private Instance Methods

sanity_checks() click to toggle source
Calls superclass method Albacore::Project#sanity_checks
# File lib/albacore/vb_project.rb, line 11
def sanity_checks
  super
  warn { "project '#{@proj_filename}' is not a Visual Basic project." } unless (File.extname(@proj_filename) =='.vbproj')
end