Build Number of DLL
-
Hi All, How can I change the build version of the generated DLL file in Visual Studio 2005 webproject?? I want it to be changed automatically each time I build the project. Thanks all
-
Hi All, How can I change the build version of the generated DLL file in Visual Studio 2005 webproject?? I want it to be changed automatically each time I build the project. Thanks all
In your AssemblyInfo file, there is a section that looks like this:
// // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.2.1.*")]
This controls the assembly version. The asterisk at the end shows that the revision will be autoincremented. If you want to autoincrement the build number, place a * there as well.the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.