Albacore / albacore

Albacore is a professional quality suite of Rake tasks for building .NET or Mono based systems.
www.albacorebuild.net
221 stars 64 forks source link

Alabcore not building the project in 'Release' mode #179

Closed shine17 closed 9 years ago

shine17 commented 9 years ago

desc "Run a simple clean and rebuild" build :buildSln do |msb| msb.sln = 'C:\GitRepos\shinetest\testapps\Albacorerakesample\AlbacoreRakeDotnetBuildSample\AlbacoreRakeDotnetBuildSample.sln' #Path of solution file. msb.target = [:Clean, :Rebuild]
msb.properties = { :Configuration => 'Release' , :Platform => 'Any CPU', :verbosity => 'detailed',
} msb.logging = 'detailed'
msb.clp 'ShowEventId'
end

Its always building dll under Debug folder. No release folder created and no dll with Release mode. Please help ! Thanks in advance !

haf commented 9 years ago

Please have a look at the docs https://github.com/Albacore/albacore/wiki/build for the build task and copy how it's done there.