Fody / Costura

Embed references as resources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to process manifest file in program

hxf3751 opened this issue · comments

I want to merge my files in one single exe. file list is as below:
Form.exe (C# winform)
ness.dll (C++ ActiveX)
Form.exe.manifest (manifest file for Form.exe)
ness.sxs.manifest (manifest file for ness.dll)

The problem is how to process the two manifest files? Should I add them to FodyWeavers.xml? or embed them in to Form.exe?

As far as I know, Costura does not embed manifests. Therefore you will need to embed them yourself as embedded resources and extract them to the temporary directory that Costura uses.

OK, Thank you!