trying to make a plug-in which can process external scripts

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear all,
I am trying to develop a plug-in that can read files which contains configurable scripts(such as filtering rules, etc). I used C# as my developing tool, and I just learned that in C# we can use System.CodeDom package to compile dynamic code. However there are some technical issues that I am not so clear. for example, I tried to use packages System.Diagnostics.Debug from the scripts:
but I failed doing so and got error messages as follows (which I believe that the program could not solve the dependency issues):
I am not sure if anyone could help me solve this problem or give me a related detailed tutorial solving it(I found some tutorials about compiling dynamic code, but these are based on console.app, but my project is based on class library file, which is different from console.app) . Thank you so much.