Step by Step guide to create Assembly Manifest

  • Thread starter Thread starter devnet09
  • Start date Start date
D

devnet09

I'm looking some documentation about how to create assembly manifest file in
VS 2008/C# environment? I could find for C++ environment but not for C#.
Thanks for you help.
 
I'm looking some documentation about how to create assembly manifest file in
VS 2008/C# environment? I could find for C++ environment but not for C#.
Thanks for you help.

Right click on project
Add new item: Application Manifest File
Properties, select created manifest in combo box (I think it is
automatically selected, but I am not sure).
 
Josip Medved said:
Right click on project
Add new item: Application Manifest File
Properties, select created manifest in combo box (I think it is
automatically selected, but I am not sure).

--
Josip Medved
http://www.jmedved.com
http://medo64.blogspot.com
Thanks Josip for the reply.
I was able to create Manifest as you suggested and successfully able to
link the manifest to console app. I have following issue now
1. Project/Properties option is disabled in case of web services project.
how can I enable and link to manifest file?
2. Default manifest file doesn't have any entry. Do I have to manually put
all the dependencies and dll's or is there anyway to generate automatically?
Thanks!!
 
 I was able to create Manifest as you suggested and successfully able to
link the manifest to console app. I have following issue now
1. Project/Properties option is disabled in case of web services project.
how can I enable and link to manifest file?
2. Default manifest file doesn't have any entry. Do I have to manually put
all the dependencies and dll's or is there anyway to generate automatically?
Thanks!!

I am not sure that manifest embedding is supported for web service.
You can try to make it manually, but I am not sure what exactly will
happen.
 
Back
Top