2

我目前正在开发一个 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
 )]
4

1 回答 1

0

显然不可能 - http://nuget.codeplex.com/discussions/360970

于 2012-06-27T07:49:09.637 回答