Tagged Questions

Albacore is a suite of rake tasks that aims to simplify build and package automation for .NET systems, using Ruby and Rake as it's foundation. Originally created by Derick Bailey, it now has a fairly sizable contributor list and is used by thousands of developers around the world. To install ...

learn more… | top users | synonyms

5
votes
1answer
381 views

Albacore: including only certain files/folders in a zip

I'm trying to zip up the artifacts of a rake build, using Albacore's ZipTask. The solution I'm building has three projects that have artifacts that need to be zipped up individually, but only the ...
4
votes
1answer
822 views

Using rake and albacore, how do I build multiple projects at once?

I am trying to build multiple C# projects using rake and albacore. It feels like I should be able to do this without a loop, but I can't quite make it work. What I have to do is this: msbuild ...
3
votes
1answer
177 views

Zip with Albacore

Hey guys, I am trying to zip with the zip task in albacore like this: task :publish => :build do Rake::Task[:service].invoke Rake::Task[:site].invoke Rake::Task[:zip_svc].invoke end ...
3
votes
1answer
1k views

the target “package” does not exist in the project when using Albacore and rake

I have the following: msbuild :build do |msb| msb.solution = "../../src/Solution.sln" msb.targets :clean, :build, :Package msb.properties = { :configuration => :Dev } end When calling ...
3
votes
2answers
773 views

Rake and MSBuild error - error MSB3021: Unable to copy file

We're using Rake with Albacore for our build & deploy process in TeamCity but my latest solution is causing me problems when I compile. When I run msbuild I get the following error: C:\Program ...
2
votes
2answers
471 views

Albacore msbuild task failing in TeamCity

I have written a rake task which builds an asp.net application using Albacore: msbuild :build do |msb| puts "Running local build" msb.properties :configuration => :Release, :outdir => ...
1
vote
1answer
54 views

Albacore AssemblyInfo Task - How to update multiple assemblyinfo files

I am fairly new to rake and albacore so I may be asking something that is pretty obvious to a more experience rake dev. I have a solution with a number of projects. I would like to update the ...
1
vote
1answer
185 views

Albacore in a class

Just getting going on using rake scripts for .NET. Trying to use the Albacore library. I have put this class together but it is not working to actually run a build (it copies a dll and I know that is ...
1
vote
2answers
496 views

Albacore msbuild task problem

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 ...
0
votes
0answers
16 views

using albacore gem how to tell xunit to run even if ms build fails?

Albacore wiki is saying it has 'skip_test_fail' that prevent rake from aborting if build fails. No example was shown please help me out here I have already tried following code in my rake file desc ...
0
votes
1answer
39 views

How to get result from exec task of Rake , albacore

exec :mycommand do |cmd| cmd.command='C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe' cmd.parameter ='checkout' end Is there a way we can get the output of the ...
0
votes
0answers
22 views

Accessing outputs from MSBuild task in Rake\Albacore

MSBuild will provide access to a list of the projects if you define an Output element <MSBuild Projects="YourSln.sln"> <Output ItemName="YourProjectOutputs" ...
0
votes
1answer
128 views

Transforming web.config file when building with albacore

When I publish from Visual Studio 2010, VS transforms my web.config file according to my Web.Debug.config or Web.Release.config. Is there a way to do that using aspnet_compiler or any other way with ...
0
votes
1answer
444 views

How to package asp.net web application w/o visual studio?

I got test server which I would like to use for CI too. Plan is to setup Hudson that listens to git repository, on new commit fetches changes, builds solution, runs tests (picks up output), setups ...
0
votes
2answers
349 views

Rake: Calling tasks with arguments in default task

I have been playing around with Rake and Albacore, to see if I can replace our existing MSBuild script that deploys software with something that isn't XML. I have a task that will change the debug ...
0
votes
1answer
340 views

How do I pipe my msbuild output to a log file from rake

I'm using the fabulous albacore gem with rake to build a new .NET project. My organization is still using NAnt, and there are lots of folks who expect to see a log file when the build script ...
0
votes
2answers
803 views

Versioning CommonAssemblyInfo.cs and MSBuild

So I have a CommonAssemblyInfo.cs linked into all the projects in my solution and is dynamically generated by my rake/albacore scripts which is not checked into source control. I also have a ...