Files
StandardStack/assets/rake/build.rb
Tommy Parnell f5264cdb79 init commit
2014-05-21 21:36:16 -04:00

27 lines
612 B
Ruby

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