Hello,
I'm trying to mark a whole project for compilation to Js. I added this
[assembly: JsType(JsMode.Clr, Export = true, Filename = "../../Config.AppcHtml/Libs/Core.Models.Configurator.js")]
to AssemblyInfo.cs. The project contains a number of classes in several folders. It seems that it does compile all files however the result gets overwritten by the next folder. What am I doing wrong?
Example:
FolderA - Classes A1.cs, A2.cs
FolderB - Classes B1.cs, B2.cs
Build result: only the B1 & B2 will be in the js file. If I comment out/delete all files in FolderB I will get A1 & A2 in the js file.
Regards,
Jan