https://github.com/jshrake/hearthstone-tags-to-json
Extracts enums from the Hearthstone game client C# assembly and converts them to JSON
https://github.com/jshrake/hearthstone-tags-to-json
Last synced: 10 months ago
JSON representation
Extracts enums from the Hearthstone game client C# assembly and converts them to JSON
- Host: GitHub
- URL: https://github.com/jshrake/hearthstone-tags-to-json
- Owner: jshrake
- Created: 2016-01-01T22:31:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-02T01:33:47.000Z (over 10 years ago)
- Last Synced: 2025-02-06T06:26:29.036Z (over 1 year ago)
- Language: C#
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hearthstone-tags-to-json
Extracts enums from the Hearthstone game client C# assembly `Assembly-CSharp.dll` and converts them to JSON
## Usage
Use the [Makefile](Makefile):
`make run`
or run it manaully and specify a list of enumeration type names:
`mono ./hearthstone-tags-to-json/bin/Release/hearthstone-tags-to-json.exe GAME_TAG TAG_ZONE`
The enumeration type names specified must be defined in the C# assembly `Assembly-CSharp.dll`.
## Dependencies
Requires [mono](http://www.mono-project.com/) and [xamarin](https://xamarin.com/):
```bash
brew install mono
brew cask install xamarin
```