Skip to content

Instantly share code, notes, and snippets.

@mxriverlynn
Created April 8, 2010 13:44
Show Gist options
  • Save mxriverlynn/360082 to your computer and use it in GitHub Desktop.
Save mxriverlynn/360082 to your computer and use it in GitHub Desktop.
require 'albacore'
task :default => [:buildall]
task :buildall do
FileList.new("./**/*.sln").each do |sln|
msbuild "build_#{sln}", [:solution] do |msb, args|
msb.solution = args.solution
msb.targets :clean, :build
msb.properties :configuration => :release
end
Rake::Task["build_#{sln}"].invoke(sln)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment