= Create C-Sharp (.NET) Mapping File = == Summary == The .h mapping file for CHM files needs to be a .cs file to include in C-sharp projects. == Detailed Description == I'd like ePublisher to create both the .h mapping file and the .cs mapping file when generating CHM files. The CHM file is built with the .h file, but the C-sharp UI needs a .cs format file to build with. I have used some conversion processes to create the .cs file, but it would be great if ePub did it automatically. === .h file format example: === #define IDH_F1_Welcome 10000010 /* Welcome Window */ #define IDH_F1_Manage_Licenses 10000020 /* Manage Licenses Window */ === .cs file format example: === namespace PutNameHere { public static class PutNameHere { public const string IDH_F1_Welcome = "10000010"; /* Welcome Window */ public const string IDH_F1_Manage_Licenses "10000020"; /* Manage Licenses Window */ } } == Use Cases == CHM files with Context-sensitive mapping for .NET applications. ---- <>