Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevoree/kevoree-dotnet
A Kevoree runtime for the .net framework
https://github.com/kevoree/kevoree-dotnet
Last synced: about 1 month ago
JSON representation
A Kevoree runtime for the .net framework
- Host: GitHub
- URL: https://github.com/kevoree/kevoree-dotnet
- Owner: kevoree
- License: lgpl-3.0
- Created: 2015-08-13T08:23:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-04T11:03:04.000Z (about 9 years ago)
- Last Synced: 2024-04-10T22:30:17.884Z (9 months ago)
- Size: 156 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kevoree-dotnet
A Kevoree runtime for the .net framework## Running a model
The Kevoree Runtime for the .NET platform is available at https://github.com/kevoree/kevoree-dotnet-core-bootstrap/releases### Installation
1. Download the [kevoree-core-bootstrap.zip](https://github.com/kevoree/kevoree-dotnet-core-bootstrap/releases/latest) archive and extract it.
2. Add kevoree-dotnet-core-bootstrap.exe to the PATH.### Execution
Executing kevoree-dotnet-core-bootstrap.exe without arguments starts a default model.Default model in KevScript :
```
add node0 : DotnetNode
add sync : WSGroup
attach node0 sync
```
It looks for the latest DotnetNode and WSGroup in the registry and link them.## Publishing a component to the registry
The Kevoree Runtime for the .NET platform is available at https://github.com/kevoree/kevoree-dotnet-model-generator/releases
### Installation
1. Download the [kevoree-model-generator.zip](https://github.com/kevoree/kevoree-dotnet-model-generator/releases/latest) archive and extract it.
2. Add kevoree-dotnet-model-generator.exe to the PATH.### Publication
The minimal publication command require 5 arguments.
* **package.name** and **package.version** defines the Nuget package to publish.
* **typeDef.name**, **typeDef.version** and **typeDef.package** defines the informations about the Type Definition of the *dotnet* Deploy Unit you want to publish.```
.\kevoree-dotnet-model-generator.exe --package.name=%NUGET_PACKAGE_NAME% --package.version=%NUGET_PACKAGE_VERSION% --typeDef.name=%KEVOREE_COMPONENT_NAME% --typeDef.version=%KEVOREE_COMPONENT_VERSION% --typeDef.package=%KEVOREE_COMPONENT_PACKAGE%
```