gpt4 book ai didi

c# - T4Toolbox 删除 GeneratedCodeAttribute

转载 作者:太空宇宙 更新时间:2023-11-03 15:44:54 27 4
gpt4 key购买 nike

我有一个问题:[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.34230")]

在 Windows 8 和 Windows 7 中,当我们生成文件时,我们有这个数字的不同版本 (4.0.30319.34230)。因此,即使我生成了新内容,文件内部也会发生变化,唯一发生变化的就是这个数字。

有没有办法不将此属性添加到生成的代码中,或者有解决方案使 Windows 8 和 Windows 7 具有相同的编号?

最佳答案

我在tt文件中用下面的代码解决了这个问题:

...
<#@ assembly name="$(SolutionDir)../res/ICSharpCode.NRefactory.dll" #>
<#@ assembly name="$(SolutionDir)../res/ICSharpCode.NRefactory.CSharp.dll" #>
<#@ import namespace="ICSharpCode.NRefactory.CSharp" #>
<#@ import namespace="System.CodeDom.Compiler" #>
...

<#+
public class XsdSchemaTransformer : CSharpTemplate
{
public void TransformSchemas(TransformationContext transformationContext)
{
...
foreach (string file in files)
{
...
string transformText = typesTemplate.Transform();
transformText = ModifyGeneratedCodeAttributeXmlVersionNumber(transformText);
typesTemplate.Context.Write(typesTemplate.Output, transformText);
}
}

private string ModifyGeneratedCodeAttributeXmlVersionNumber(string source)
{
CSharpParser parser = new CSharpParser();
SyntaxTree syntaxTree = parser.Parse(source);
IEnumerable<TypeDeclaration> typeDeclarations = syntaxTree.Descendants.OfType<TypeDeclaration>();
foreach (TypeDeclaration typeDeclaration in typeDeclarations)
{
AttributeSection generatedCodeAttributeSection = typeDeclaration.Attributes.FirstOrDefault(x => x.Attributes.FirstOrDefault(y => IsTypeOfGeneratedCodeAttribute(y.Type)) != null);
if (generatedCodeAttributeSection != null)
{
ICSharpCode.NRefactory.CSharp.Attribute generatedCodeAttribute = generatedCodeAttributeSection.Attributes.FirstOrDefault(x => IsTypeOfGeneratedCodeAttribute(x.Type));
PrimitiveExpression primitiveExpression = (PrimitiveExpression)generatedCodeAttribute.Arguments.ElementAt(1);
string xmlVersionNumber = Convert.ToString(primitiveExpression.Value);
string[] splittedVersionNumber = xmlVersionNumber.Split('.');
string formatedXmlVersionNumber = string.Format("{0}.{1}", splittedVersionNumber[0], splittedVersionNumber[1]);
generatedCodeAttribute.Arguments.Remove(primitiveExpression);
generatedCodeAttribute.Arguments.Add(new PrimitiveExpression(formatedXmlVersionNumber));
}
}

return syntaxTree.GetText();
}

private bool IsTypeOfGeneratedCodeAttribute(AstType type)
{
return type.ToString().Equals(typeof(GeneratedCodeAttribute).FullName);
}
}
#>

NRefacotry on nuget

结果是:

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0")]

关于c# - T4Toolbox 删除 GeneratedCodeAttribute,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28539310/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com