我目前正在开发一个 NuGet 包,它需要在 AssemblyInfo.cs 中配置一些东西。我已在 /content/Properties 中的包中添加了一个 AssemblyInfo.cs.pp 文件,但未执行转换。这不可能吗?
AssemblyInfo.cs.pp 的内容
using Client.Logging.Aspects;
using PostSharp.Extensibility;
[assembly: ProfileAspect(
AttributeTargetTypes = "$id$*",
AttributeTargetElements = MulticastTargets.Method,
AttributeTargetMemberAttributes = MulticastAttributes.Public
)]