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

#define IDH_F1_Manage_Licenses 10000020

.cs file format example:

namespace PutNameHere

{

public static class PutNameHere

{

public const string IDH_F1_Welcome = "10000010";

public const string IDH_F1_Manage_Licenses "10000020";

}

}

Use Cases

CHM files with Context-sensitive mapping for .NET applications.


:) :)) :( ;) :\ |) X-( B)

Enhancements/Create_.NET_Mapping_File (last edited 2008-02-13 06:18:27 by localhost)