How to include assembly info to xsltc-compiled dll?

346 Views Asked by At

I need to include assembly info on my dll which I manually compiled the XSLT files using command prompt with XSLTC.exe. Anyone knows how? ILmerge?

1

There are 1 best solutions below

2
On

Details provided here.

xsltc [options] [/class:<name>] <sourceFile> [[/class:<name>] <sourceFile>...]

/out: assemblyName

Specifies the name of the assembly that is output. The assembly name defaults to the name of the main style sheet or the first style sheet if multiple style sheets are present.

If the style sheet contains scripts, the scripts are saved to a separate assembly. Script assembly names are generated from the main assembly name. For example, if you specified CustOrders.dll for your assembly name, the first script assembly is named CustOrders_Script1.dll.