Files
ContentBundling/assets/rake/build.rb
Tommy Parnell 9d52cec901 build tasks
2014-05-30 02:02:03 -04:00

27 lines
630 B
Ruby

namespace :build do
# Build the solution
msbuild :net_build do |b|
b.verbosity = 'normal'
b.solution = "tparnell.ContentBundling.sln"
b.properties = { :Configuration => BUILD_CONFIG }
end
xbuild :mon_build do |b|
b.verbosity = 'normal'
b.solution = "tparnell.ContentBundling.sln"
b.properties = { :Configuration => BUILD_CONFIG }
end
# Clean the solution
msbuild :net_clean do |b|
b.verbosity = 'normal'
b.solution = "tparnell.ContentBundling.sln"
b.targets = [:Clean]
end
xbuild :mon_clean do |b|
b.verbosity = 'normal'
b.solution = 'tparnell.ContentBundling.sln'
b.targets = [:Clean]
end
end