Albacore msbuild task problem
- by Dejan
Just updated albacore to version 0.14 and ran into a major problem.
My current environment is:
Ruby 1.9.1
Rake 0.8.7
Albacore 0.1.4
The problem is that as of now all my rake build throw a funny little exception:
undefined method 'push' for #<Enumerator:0x???????>
So far I have traced the problem to albacore msbuild.rb line 38 and 26.
To be honest I just don't have a clue why this is happening. As a little help here is the rake task that is turning my hear Grey :)
desc "Build solution"
msbuild :build => :prepareOutput do |msb|
msb.properties :configuration => :Release
msb.targets :Clean, :Build
msb.solution = "../xxx/xxx/xxx.sln"
end