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

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

An idea can be to store your common assemblyinfo params somewhere in your rakefile (or in an external file, using yaml for example) that can be read by a method into rake and then configure your task as follows:

task :update_assemblyinfo_files => [:update_a, :update_b, :update_c]

and then in each update task

assemblyinfo :update_a do |asm|
  common_info = get_common_assemblyinfo()
  asm.version = common_info[:version]
  asm.company_name = common_info[:company_name]
  asm.product_name = common_info[:product_name]
  asm.output_file = "your_file_path"
end

def get_common_assemblyinfo()
  #read your yaml here and return it
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.