我正在寻找为使用codeDOM生成的exe文件设置文件版本的任何方法。我的总是0.0.0.0。编程显然是首选,但在这一点上,任何东西都会好于没有。
答案 0 :(得分:5)
已编译程序集的版本由AssemblyFileVersion属性控制。编译时,您只需确保将其作为CodeDom树的一部分包含在内。
您可以通过将该属性添加到CodeCompileUnit AssemblyCustomAttributes成员中来设置此项。
CodeCompileUnit unit = CreateMyUnit();
var attribute = new CodeAttributeDeclaration(
new CodeTypeReference(typeof(AssemblyFileVersionAttribute)));
attribute.Arguments.Add(
new CodeAttributeArgument(
new CodePrimitiveExpression("1.1.1.1")));
unit.AssemblyCustomAttributes.Add(attribute);