Albacore msbuild task problem
Posted
by Dejan
on Stack Overflow
See other posts from Stack Overflow
or by Dejan
Published on 2010-05-10T21:47:00Z
Indexed on
2010/05/19
1:40 UTC
Read the original article
Hit count: 337
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
© Stack Overflow or respective owner