Question, can I generate C# using this?
As a complete novice to MPS, if I make my own language. Is it possible to use this project to generate C# output from my DSL?
Same question. I'm interested in MPS and have been struggling with its concepts but before investing much time on it really need to know if C# code generation is viable. When I try to import this library, I get the following migration errors:
The language jetbrains.mps.lang.actions does not provide migration from version 3. Some modules use this language with version 0 while current version is 4.
The language jetbrains.mps.lang.editor does not provide migration from version 4. Some modules use this language with version 0 while current version is 12.
The language jetbrains.mps.lang.editor does not provide migration from version 5. Some modules use this language with version 0 while current version is 12.
The language jetbrains.mps.lang.editor does not provide migration from version 6. Some modules use this language with version 0 while current version is 12.
MPS is mature enough to run your business on it. However, this C# implementation is just a prototype, which gives no guarantees at the moment.
Ok, thank you!
Hi, I must admit I might gave up too soon, and found relief in ANTLR4, it can produce C# output. Maybe MPS can do too, but either not or it seemed too difficult to find out or implement. Either way, I would hope that MPS would make it easier to generate C# output, too.
Am Do., 6. Dez. 2018, 21:53 hat Charles Nicholas Kellett < [email protected]> geschrieben:
Same question. I'm interested in MPS and have been struggling with its concepts but before investing much time on it really need to know if C# code generation is viable. When I try to import this library, I get the following migration errors:
The language jetbrains.mps.lang.actions does not provide migration from version 3. Some modules use this language with version 0 while current version is 4. The language jetbrains.mps.lang.editor does not provide migration from version 4. Some modules use this language with version 0 while current version is 12. The language jetbrains.mps.lang.editor does not provide migration from version 5. Some modules use this language with version 0 while current version is 12. The language jetbrains.mps.lang.editor does not provide migration from version 6. Some modules use this language with version 0 while current version is 12.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/vaclav/MPS_CSharp/issues/1#issuecomment-445025689, or mute the thread https://github.com/notifications/unsubscribe-auth/ACzWTl3AUtmGXLQDRc-wz0Km2pLqyTC0ks5u2YOsgaJpZM4RDmWp .
Actually I was able to make progress - Vaclav was kind enough to update a tutorial for me on how to generate XML output. I can now use that as an interim step to then generate C# code within .NET using T4 templates.