向 asminfo NAnt 任务生成的文件添加注释
我正在 NAnt 中使用 asminfo 任务 但想要能够在生成的文件中包含解释性注释(告诉外行该文件是由 NAnt 生成的,以及其用途是什么)。
这可能吗?
I am using the asminfo task in NAnt but would like to be able to include an explanatory comment in the generated file (to tell the uninitiated that the file was generated by NAnt, and what its purpose is).
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有任何 NAnt 函数可以直接实现这一点。
您可以执行以下操作:生成 AssemblyInfo 文件,将其内容加载到属性中,使用标头覆盖该文件,然后附加原始内容。
I'm not aware of any NAnt function to achieve this directly.
What you could do is this: Generate AssemblyInfo file, load its content to a property, overwrite the file with your header, and append the original content.