How to create cab file from mshc?

288 Views Asked by At

I am using following task to create cab file.

<Exec Command="&quot;$(CabCreatorPath)\CABARC.exe&quot; n &quot;@(CabFile)&quot; &quot;$(DynamicViewDrive)\Source\Output\ClassReference.mshc&quot;  "/>

Is there any other alternative way is there to create cab file from mshc?

1

There are 1 best solutions below

0
On

You could write your own task to simplify the syntax.

Usage would then instead be something like:

<MshcCab nflag="true" Input="@(CabFile)" Output="$(DynamicViewDrive)\Source\Output\ClassReference.mshc" />