hi
ho to manage version of my C# program ?
how you do it ?
thank's in advance
hi
ho to manage version of my C# program ?
how you do it ?
thank's in advance
The question is very ambiguous. If you are referring to source code version management, then this is the best source code version management "how to" that I have ever read: http://www.ericsink.com/scm/source_control.html
Hope it helps.
Your question is very poorly written, but I'll assume you're asking:
"How do I set the version of my program?"
To which the answer is simple: you can do it programmatically via AssemblyInfo.cs
, or via Visual Studio by going to the Project's Property window.
To do it in AssemblyInfo you use 2x attributes:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
You can read the MSDN documentation on both: