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

Use provided details to feed the assembly infos.

parent 2319b3d2
Branches
Tags
No related merge requests found
...@@ -9,7 +9,7 @@ using System.Runtime.InteropServices; ...@@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("IMCF, Biozentrum, University of Basel")] [assembly: AssemblyCompany("IMCF, Biozentrum, University of Basel")]
[assembly: AssemblyProduct("AutoTx")] [assembly: AssemblyProduct("AutoTx")]
[assembly: AssemblyCopyright("Copyright © 2018")] [assembly: AssemblyCopyright("© 2018")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
...@@ -31,9 +31,13 @@ using System.Runtime.InteropServices; ...@@ -31,9 +31,13 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyVersion(BuildDetails.GitMajor + "." +
[assembly: AssemblyFileVersion("1.0.0.0")] BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." +
BuildDetails.GitMinor + "." +
BuildDetails.GitPatch + ".0")]
[assembly: AssemblyInformationalVersion(BuildDetails.GitCommitName + [assembly: AssemblyInformationalVersion(BuildDetails.BuildDate +
" @ " + BuildDetails.GitBranch + " " + BuildDetails.GitCommit +
" (" + BuildDetails.BuildDate + ")")] " (" + BuildDetails.GitBranch + ")")]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment