How can I set assembly description?
I’m generating assembly programmatically
CodeDomProvider.CreateProvider("C#").CompileAssemblyFromFile(parameters, files);
But i don’t know where are assembly properties. is there any way to set these?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CompileAssemblyFromFiletakes an array of files. IncludeAssemblyInfo.csfile with required attributes, likeAssemblyInfo.csis a file, which added byVisual Studioto any project by default. You can name it whatever you want, but i suggest to stick with this convention.