使用 MSBuild 添加AllowPartiallyTrustedCallers
我使用 CC.Net 和 MSBuild 任务来构建一个由许多解决方案和项目组成的应用程序。我们正在使用 AssemblyInfo MSBuild 社区任务来更新 AssemblyInfo.cs 中的版本信息。不幸的是,AllowPartiallyTrustedCallers 属性无法进入,AssemblyInfo 任务告诉我该任务不支持AllowPartiallyTrustedCallers 属性。有没有什么方法可以通过 MSBuild 添加该属性,而不必诉诸于事后仅在文件末尾添加行的自定义任务?
I am using CC.Net with MSBuild tasks to build an application that is composed of a number of solutions and projects. We are using the AssemblyInfo MSBuild Community task to update version info in AssemblyInfo.cs. Unfortunately the AllowPartiallyTrustedCallers attribute doesn't get in and the AssemblyInfo task tells me that the AllowPartiallyTrustedCallers attribute is not supported by the task. Is there any way to add that attribute through MSBuild without having to resort to a custom task that just tacks the line at the end of the file after-the-fact?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我构建 uNHAddIns 项目的AllowPartiallyTrustedCallers 版本时,我使用
任务完成了此操作。修改后的GenerateAssemblyInfo目标看起来像这样:不是很漂亮,但它可以工作(我正在使用msbuild 3.5)
I did it using the
<WriteLinesToFile/>
task when I was building an AllowPartiallyTrustedCallers version of the uNHAddIns project. The modified GenerateAssemblyInfo target looked like this:Not very pretty but it works (i'm using msbuild 3.5)