Click here to Skip to main content
15,888,072 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getter Pin
Dave Kreskowiak5-Nov-12 4:43
mveDave Kreskowiak5-Nov-12 4:43 
GeneralRe: Getter Pin
J4amieC5-Nov-12 4:44
J4amieC5-Nov-12 4:44 
GeneralRe: Getter Pin
Pete O'Hanlon5-Nov-12 4:47
mvePete O'Hanlon5-Nov-12 4:47 
AnswerRe: Getter Pin
Abhinav S5-Nov-12 5:37
Abhinav S5-Nov-12 5:37 
GeneralRe: Getter Pin
C-P-User-35-Nov-12 7:18
C-P-User-35-Nov-12 7:18 
GeneralRe: Getter Pin
Pete O'Hanlon5-Nov-12 8:01
mvePete O'Hanlon5-Nov-12 8:01 
AnswerRe: Getter Pin
DaveyM695-Nov-12 8:06
professionalDaveyM695-Nov-12 8:06 
GeneralRe: Getter Pin
C-P-User-35-Nov-12 8:29
C-P-User-35-Nov-12 8:29 
GeneralRe: Getter Pin
DaveyM695-Nov-12 8:41
professionalDaveyM695-Nov-12 8:41 
GeneralRe: Getter Pin
Pete O'Hanlon5-Nov-12 8:45
mvePete O'Hanlon5-Nov-12 8:45 
QuestionFORMAT ASSEMBLY Pin
Member 91410335-Nov-12 2:01
Member 91410335-Nov-12 2:01 
AnswerRe: FORMAT ASSEMBLY Pin
Eddy Vluggen5-Nov-12 2:13
professionalEddy Vluggen5-Nov-12 2:13 
GeneralRe: FORMAT ASSEMBLY Pin
Member 91410335-Nov-12 2:23
Member 91410335-Nov-12 2:23 
GeneralRe: FORMAT ASSEMBLY Pin
Eddy Vluggen5-Nov-12 2:27
professionalEddy Vluggen5-Nov-12 2:27 
GeneralRe: FORMAT ASSEMBLY Pin
Member 91410335-Nov-12 2:29
Member 91410335-Nov-12 2:29 
QuestionRe: FORMAT ASSEMBLY Pin
Eddy Vluggen5-Nov-12 2:42
professionalEddy Vluggen5-Nov-12 2:42 
AnswerRe: FORMAT ASSEMBLY Pin
Member 91410335-Nov-12 3:15
Member 91410335-Nov-12 3:15 
GeneralRe: FORMAT ASSEMBLY Pin
Dave Kreskowiak5-Nov-12 3:21
mveDave Kreskowiak5-Nov-12 3:21 
GeneralRe: FORMAT ASSEMBLY Pin
Member 91410335-Nov-12 3:35
Member 91410335-Nov-12 3:35 
GeneralRe: FORMAT ASSEMBLY Pin
Dave Kreskowiak5-Nov-12 4:48
mveDave Kreskowiak5-Nov-12 4:48 
AnswerRe: FORMAT ASSEMBLY Pin
Eddy Vluggen5-Nov-12 4:39
professionalEddy Vluggen5-Nov-12 4:39 
Member 9141033 wrote:
application(.exe) shows 1.0.0.25969 and in project properties stands 1.0.0.44.

After building, the version should be 1.0.0.44 for the assembly, regardless whether it's an executable or a library.

Back to the solution-explorer, check the folder called "properties"; it'll contain an "AssemblyInfo.cs" file. At the end of the file, you should see something similar to below;
C#
// 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 Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

It is the on at the bottom that's used to display a version number in the Windows Explorer. Should even work if you enter "-1" as the "revision" Smile | :)
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]
They hate us for our freedom![^]

QuestionCreate a button in the context menu for each selected contact. Pin
Cristian Capannini5-Nov-12 0:22
Cristian Capannini5-Nov-12 0:22 
AnswerRe: Create a button in the context menu for each selected contact. Pin
Mycroft Holmes5-Nov-12 0:39
professionalMycroft Holmes5-Nov-12 0:39 
GeneralRe: Create a button in the context menu for each selected contact. Pin
Cristian Capannini5-Nov-12 2:36
Cristian Capannini5-Nov-12 2:36 
GeneralMessage Closed Pin
5-Nov-12 2:42
Cristian Capannini5-Nov-12 2:42 

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.