Samarsh
Samarsh

Reputation: 565

Dynamically embed application manifest

I know how to create app.manifest statically from inside Visual Studio. But is there any simple way of dynamically embedding application manifest file to an existing assembly?
I don't wish to use tools like mt.exe as I can't redistribute them at the client machine.

Upvotes: 1

Views: 281

Answers (1)

Samarsh
Samarsh

Reputation: 565

Apparently, I couldn't find a way to dynamically embed app.manifest to an existing assembly, and surprisingly this question didn't even get a single comment. So, I changed my approach of solving the problem. Now, I am compiling my assembly dynamically (at the client site) and using custom resource containing my custom app.manifest.
Hope this helps someone with a similar problem.

Upvotes: 1

Related Questions