我可以在我的 Web 应用程序(bin 文件夹)中指定 system.codedom 编译器吗?
我想使用 Nemerle,但为了使用它:
<system.codedom>
<compilers>
<compiler
language="n;Nemerle" extension=".n" warningLevel="1"
type="Nemerle.Compiler.NemerleCodeProvider, Nemerle.Compiler, Version=1.0.0.9887, Culture=neutral, PublicKeyToken=5291d186334f6101" />
</compilers>
</system.codedom>
我需要在 GAC 中使用我的编译器。
遗憾的是我无法在托管上做到这一点。那么也许我可以使用我的 bin 文件夹来实现它?
我可以指定(以某种方式......?)compilerOptions =“/ lib:???”进入我的 /bin 文件夹并将编译器放在那里?
I want to use Nemerle, but for using it :
<system.codedom>
<compilers>
<compiler
language="n;Nemerle" extension=".n" warningLevel="1"
type="Nemerle.Compiler.NemerleCodeProvider, Nemerle.Compiler, Version=1.0.0.9887, Culture=neutral, PublicKeyToken=5291d186334f6101" />
</compilers>
</system.codedom>
I need my compiler inside GAC.
Sadly I can't do it on hosting. So maybe I can just use my bin folder for it ?
Can I specify ( somehow ... ? ) compilerOptions="/lib:???" into my /bin folder and put compiler there ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将 Nemerle.Compiler.dll 放入 bin 文件夹中
Try putting Nemerle.Compiler.dll in your bin folder