https://github.com/neo-one-suite/neo-one-csharp
Binary wrapper for neon - C# compiler for the NEO Virtual Machine
https://github.com/neo-one-suite/neo-one-csharp
neo neo-blockchain neo-one
Last synced: about 1 month ago
JSON representation
Binary wrapper for neon - C# compiler for the NEO Virtual Machine
- Host: GitHub
- URL: https://github.com/neo-one-suite/neo-one-csharp
- Owner: neo-one-suite
- License: mit
- Created: 2017-12-24T04:36:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-24T05:00:29.000Z (about 8 years ago)
- Last Synced: 2025-10-04T09:55:33.898Z (6 months ago)
- Topics: neo, neo-blockchain, neo-one
- Language: C#
- Homepage: https://neo-one.io
- Size: 8.79 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @neo-one/csharp
> Binary wrapper for [neon](https://github.com/neo-one-suite/neo-compiler/tree/master/neon) - C# compiler for the NEO Virtual Machine
OS X, Linux and Windows binaries are currently provided.
## CLI
```
$ npm install --global @neo-one/csharp
```
```
$ neo-one-csharp sc.dll
```
## API
```
$ npm install --save @neo-one/csharp
```
```js
const execFile = require('child_process').execFile;
const csharp = require('@neo-one/csharp');
execFile(csharp, ['sc.dll'], (err, stdout) => {
console.log(stdout);
});
```
## License
@neo-one/csharp is MIT-licensed.