-1

There is a Visual Studio plugin called Typewriter that helps produce TypeScript files from C# files. I am doing this so I can have similar model classes on the front end of a web application as well as the back end. The back end portion needs to be a windows class library. Is it possible to do this?

Matt Zappitello
  • 785
  • 2
  • 11
  • 30

1 Answers1

1

The problem seems to be that the .tst cannot find the source files. in the template constructor settings.SetMappedSourceFile = file => 'path to files to be converted'

This seems to solve the problem

M. Shaffer
  • 26
  • 1