I added a Script# project to my website project and created a small sample library with two classes.
Now I want to use these classes from the website code. In this case, I created a simple object tree and serialized it to JSON (which would then get fetched by the client-side code).
I tried adding a reference to the Script# project. It compiles fine but then gives me an error when launching about:
- Assembly not found
- Runtime version differing
Is it even possible to share code between Script# and ordinary C#?
I am using Script# 0.6 with VS 2010 and .NET 3.5 (both projects).