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 assemblyinfo files in each project individually. Most of the infor in the files will be the same, but there may be one or two things that I want to be different. I haven't been able to figure out a way to do this with the albacore assemblyinfo task.
The type of syntax I am after would be
task :update_assemblyinfo_files
# i know this won't work but i would like to be able to call the assemblyinfo task
# a number of times and each time pass in at least the input_filename
assemblyinfo '/src/myproj1/properties/assemblyinfo.cs'
assemblyinfo '/src/myproj2/properties/assemblyinfo.cs'
end
assemblyinfo :assemblyinfo do |asm|
asm.version = $asm_ver
asm.input_file = (a parameter input)
end
Any ideas on how to do this would be appreciated
Thanks