Search code examples
asp.netweb-confignemerle

Can I specify system.codedom compiler inside my web application (bin folder)?


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 ?


Solution

  • Try putting Nemerle.Compiler.dll in your bin folder