I was working on a Irony/C# based DSL that I wrote awhile back and noticed that I had some strange NameSpace issues with the GTK UI (exposed only within Xamarin’s Stetic Designer, not sure how those naming conflicts were not a compile time error…).
Updated source for my Gtk# addition to Irony is on GitHub now. Remember that my additions are on the “gtksharp-explorer” branch.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
Grammar Explorer based on Gtk#
For cross-platform Irony work in Mono 3.2.X and MonoDevelop/Xamarin 4.1.X/4.2.X Instructions for building on Mono:
Via MonoDevelop/Xamarin IDE:
- Release or Debug Targets: Load and build via the Irony_All.MonoDevelop.sln Via cmd line:
Release: xbuild /p:Configuration=Release Irony_All.MonoDevelop.sln mono Irony.GrammarExplorer.GtkSharp/bin/Release/Irony.GrammarExplorer.GtkSharp.exe
Debug: xbuild /p:Configuration=Release Irony_All.MonoDevelop.sln mono Irony.GrammarExplorer.GtkSharp/bin/Debug/Irony.GrammarExplorer.GtkSharp.exe