Skip to content
Snippets Groups Projects
Commit 33e60370 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Feed assembly infos for all projects with provided details.

parent d0d9059c
No related branches found
No related tags found
No related merge requests found
......@@ -31,5 +31,13 @@ using System.Runtime.InteropServices;
// 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")]
[assembly: AssemblyVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyInformationalVersion(BuildDetails.BuildDate +
" " + BuildDetails.GitCommit +
" (" + BuildDetails.GitBranch + ")")]
......@@ -31,5 +31,13 @@ using System.Runtime.InteropServices;
// 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")]
[assembly: AssemblyVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyInformationalVersion(BuildDetails.BuildDate +
" " + BuildDetails.GitCommit +
" (" + BuildDetails.GitBranch + ")")]
......@@ -31,5 +31,13 @@ using System.Runtime.InteropServices;
// 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")]
[assembly: AssemblyVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyInformationalVersion(BuildDetails.BuildDate +
" " + BuildDetails.GitCommit +
" (" + BuildDetails.GitBranch + ")")]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment