We have the convention of versioning our builds as [major].[minor].[micro].[revision], e.g. 2.1.2.33546.
Our build-script automatically updates an AssemblyInfo.cs file containing
[assembly: AssemblyVersion("x.y.z.w")]
in order to embed the version-number in the assembly.
But …
I know this question has popped up several times, like here: Getting the subversion repository number into code .
But either it's too complicated for me to understand, or too elaborate for my project.
This is my setup in short:
Several …
Canonical
How can I make an HTTP request and send some data using the POST method?
I can do a GET request, but I have no idea of how to make a POST request.