Binary wrapper for neon - C# compiler for the NEO Virtual Machine
OS X, Linux and Windows binaries are currently provided.
$ npm install --global @neo-one/csharp
$ neo-one-csharp sc.dll
$ npm install --save @neo-one/csharp
const execFile = require('child_process').execFile;
const csharp = require('@neo-one/csharp');
execFile(csharp, ['sc.dll'], (err, stdout) => {
console.log(stdout);
});
@neo-one/csharp is MIT-licensed.