Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
GeneralRe: DataSet not Updating Database Pin
Orville2-Jun-04 10:59
Orville2-Jun-04 10:59 
QuestionWant to mouse click a toolbar button? Pin
Anonymous2-Jun-04 9:32
Anonymous2-Jun-04 9:32 
AnswerRe: Want to mouse click a toolbar button? Pin
Heath Stewart2-Jun-04 10:18
protectorHeath Stewart2-Jun-04 10:18 
GeneralRe: Want to mouse click a toolbar button? Pin
Anonymous3-Jun-04 3:34
Anonymous3-Jun-04 3:34 
GeneralDisable auto-incrementing version Pin
Anonymous2-Jun-04 9:31
Anonymous2-Jun-04 9:31 
GeneralRe: Disable auto-incrementing version Pin
Heath Stewart2-Jun-04 9:55
protectorHeath Stewart2-Jun-04 9:55 
GeneralRe: Disable auto-incrementing version Pin
Anonymous2-Jun-04 11:27
Anonymous2-Jun-04 11:27 
GeneralRe: Disable auto-incrementing version Pin
Heath Stewart2-Jun-04 11:49
protectorHeath Stewart2-Jun-04 11:49 
Something else is wrong, then. So long as you have something like this:
[assembly: AssemblyVersion("1.0.1.1")]
You'll never have an incremental version number (and it's technically not incremental - see the attribute documentation in the .NET SDK). Also make sure that if you use the AssemblyFileVersionAttribute that you fix that as well, although I don't think that accepts an asterisk.

Make sure that you have project references as well instead of assembly references (when you add a reference, click the Project tab instead of selecting an assembly) and make sure that you have one and only one AssemblyVersionAttribute defined at the assembly level (prefixed with assembly:). You shouldn't have any problems. If you do, you have something wrong.

And, no, I can't share that system. It's our flagship product.

If you want the versioning system I use, it's almost the same as what the C# compiler uses. The major and minor versions (the first two) you set. The third is the number of days since January 1, 2000, and the last is incremented to signify minor changes. We don't change that number much except for minor bug fixes since Fusion requires that a new assembly version exists or it won't download it (we use touchless-deployment over the 'net). The build is typically the number of days from 1/1/2000 till the target release date so that we don't change it ever day.

 

Microsoft MVP, Visual C#
My Articles
QuestionConfig Files ? Pin
triso2-Jun-04 9:24
triso2-Jun-04 9:24 
AnswerRe: Config Files ? Pin
Heath Stewart2-Jun-04 9:53
protectorHeath Stewart2-Jun-04 9:53 
GeneralRe: Config Files ? Pin
triso2-Jun-04 10:06
triso2-Jun-04 10:06 
GeneralRe: Config Files ? Pin
Heath Stewart2-Jun-04 10:07
protectorHeath Stewart2-Jun-04 10:07 
GeneralRe: Config Files ? Pin
triso2-Jun-04 10:17
triso2-Jun-04 10:17 
GeneralRe: Config Files ? Pin
Heath Stewart2-Jun-04 10:21
protectorHeath Stewart2-Jun-04 10:21 
GeneralRe: Config Files ? Pin
triso2-Jun-04 11:56
triso2-Jun-04 11:56 
GeneralRe: Config Files ? Pin
triso2-Jun-04 11:58
triso2-Jun-04 11:58 
GeneralRe: Config Files ? Pin
triso2-Jun-04 12:00
triso2-Jun-04 12:00 
GeneralRe: Config Files ? Pin
triso2-Jun-04 12:01
triso2-Jun-04 12:01 
GeneralRe: Config Files ? Pin
Heath Stewart2-Jun-04 11:59
protectorHeath Stewart2-Jun-04 11:59 
GeneralDisplaying selected items in listview on another form Pin
mikeyb252-Jun-04 8:58
mikeyb252-Jun-04 8:58 
GeneralRe: Displaying selected items in listview on another form Pin
Heath Stewart2-Jun-04 9:06
protectorHeath Stewart2-Jun-04 9:06 
GeneralPassing managed object using Drag Drop Pin
rkvs2-Jun-04 7:42
rkvs2-Jun-04 7:42 
GeneralRe: Passing managed object using Drag Drop Pin
Heath Stewart2-Jun-04 9:03
protectorHeath Stewart2-Jun-04 9:03 
GeneralFolder Browser Strangeness Pin
Russell Jones2-Jun-04 6:45
Russell Jones2-Jun-04 6:45 
GeneralRe: Folder Browser Strangeness Pin
Stefan Troschuetz2-Jun-04 8:08
Stefan Troschuetz2-Jun-04 8:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.