BuildProvider:是否可以指定要生成的程序集的名称?
我创建了一个自定义虚拟路径提供程序和构建提供程序,并且想知道是否可以以某种方式指定生成的程序集的名称,而不是让 asp.net 给出一个名称?
I created a custom virtual path provider and build provider and was wondering if it was possible to somehow specify the name of the assembly that get's generated, rather then letting asp.net come up with a name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要回答我自己的问题,只需很少的体操就可以做到。人们可以从 AssemblyBuilder 获取对 CodeDomProvider 的引用,然后就可以由您决定要做什么。
像这样的东西
To answer my own question, it is possible with little gymnastics. One can get reference to CodeDomProvider from AssemblyBuilder and from there on it is up to you what you want to do.
Something like this