0

In our application there is a module for source code file generation based on templates. The generated source codes are Python, PHP, SQL etc. I found this post How to create Template based files in Java? but the solution is for Java. Is there any libraries available for .net ?

Community
  • 1
  • 1
ProgR
  • 151
  • 1
  • 11

1 Answers1

0

There is a version of Mustache for .NET as well, check out for the library.

Github: https://github.com/jehugaleahsa/mustache-sharp

NuGet: http://www.nuget.org/packages/mustache-sharp

Hope that helps, I've used it a few times, it's pretty straight forward and works well.

jamesbar2
  • 614
  • 7
  • 19
  • Oh, one other library that's similar to Mustache is Handlebars, which provides some slightly added functionality, there is a .NET version of it as well, just search Google for it. http://stackoverflow.com/questions/10555820/what-are-the-differences-between-mustache-js-and-handlebars-js – jamesbar2 Jan 20 '15 at 03:51