I have an application that I am trying to use JSIL on. In an attempt to do that, I've done the following:
- Downloaded the code using the following command-line command:
git clone --recursive https://github.com/sq/JSIL.git
- Opened JSIL.sln in Visual Studio Premium 2013
- Rebuilt the entire solution.
When I do this, I get over 1200 errors. They all seem related to missing references. The bulk of them seem to be:
- The type or namespace name 'Mono' could not be found
- The type or namespace name 'ICSharpCode' could not be found
- The type or namespace name 'TypeSystem' could not be found
- The type or namespace name 'MethodReference' could not be found
- 'JSIL.Transforms.DecomposeMutationOperators.TypeSystem' is a 'field' but is used like a 'type'
- The type or namespace name 'FieldReference' could not be found
Does anyone know what I'm missing / doing wrong? This seems like it would be a powerful tool (if it works right). I'd really like to give it a shot.
Thank you for any insights.