I know that I can set a major and minor release number for every project in my solution in VS. Can I set a general major.minor number for all my projects in my solution, that all have the same format e.g. 2.3.3?
Share
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.
I recommend that you have a common file called
GlobalAssemblyInfo.csthat contains the assembly information that applies across your entire solution. It would probably include the following attributes:Then, each project should have a local file called
AssemblyInfo.csthat contains the specific information applying only to that project. This will include the information you might want to supply on a per-assembly basis:Finally, follow these steps to share the
GlobalAssemblyInfo.csfile between multiple projects: