我有一个包含许多项目的解决方案。我想分别更新每个项目中的AssemblyInfo.cs
文件。文件中的大部分信息都是相同的,但我可能会有一两件事要与众不同。我无法找到使用Albacore assemblyinfo
任务执行此操作的方法。
我所遵循的语法类型是
# 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
task :update_assemblyinfo_files do
assemblyinfo '/src/myproj1/properties/assemblyinfo.cs'
assemblyinfo '/src/myproj2/properties/assemblyinfo.cs'
end
assemblyinfo :assemblyinfo do |asm|
asm.version = version
asm.input_file = <an-input-parameter>
end
答案 0 :(得分:2)
一个想法可以是将你的公共assemblyinfo params存储在你的rakefile中(或者在外部文件中,例如使用yaml),可以通过方法读取到rake中,然后按如下方式配置你的任务:
task :update_assemblyinfo_files => [:update_a, :update_b, :update_c]
然后在每个更新任务中
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
答案 1 :(得分:1)
此任务将遍历解决方案中的每个项目并更新每个程序集信息文件。在此示例中,它更新版本(假设您使用的是VERSION文件和version_bumper)。
@solutionpath = "c:/mysolution"
desc "Updates each assembly version"
task :version do |asm|
FileList["#{@solutionpath}**/Properties/AssemblyInfo.cs"].each { |assemblyfile|
asm = AssemblyInfo.new()
asm.use(assemblyfile)
asm.version = bumper_version.to_s
asm.file_version = bumper_version.to_s
asm.execute
}
end
答案 2 :(得分:0)
让我们一次解决这个问题。如果您有多个AssemblyInfo.cs
个文件,则可以创建一个FileList
来捕获所有文件。
assembly_info_files = FileList['./source/**/AssemblyInfo.cs']
动态地为每个文件创建一个assemblyinfo
任务。
assembly_info_files.each do |file|
assemblyinfo file do |asm|
asm.input_file = file
asm.version = version
end
end
但是,我认为你说你可能有不同的参数每个文件。我建议您在各个文件中静态编码这些属性。你需要某种散列哈希的文件哈希=&gt; {name =&gt;价值}。
如果您始终覆盖相同的属性“property_A”和“property_B”
assembly_info_properties = {
'./source/ProjectA/AssemblyInfo.cs' => {
:copyright => '2011'
:version => '1.0.0'
},
'./source/ProjectB/AssemblyInfo.cs' => {
:copyright => '2012'
:version => '0.1.0'
}
}
assembly_info_properties.each do |file,properties|
assmeblyinfo file do |asm|
asm.input_file = file
asm.copyright = properties[:copyright]
asm.version = properties[:version]
end
end
如果覆盖不同的属性集,请使用散列哈希并使用常规custom_attributes
assembly_info_properties = {
'./source/ProjectA/AssemblyInfo.cs' => {
:Copyright => 'Someone Else (c) 2011'
},
'./source/ProjectB/AssemblyInfo.cs' => {
:Title => 'Custom Title'
}
}
assembly_info_properties.each do |file,properties|
assmeblyinfo file do |asm|
asm.input_file = file
asm.custom_attributes properties
end
end