From 10f53f8ec5131467047a576f37d66638c8c2bc88 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Wed, 28 Feb 2018 14:54:29 +0100 Subject: [PATCH] Import namespace for assembly infos explicitly. --- ATxCommon/Properties/AssemblyInfo.cs | 19 ++++++++++--------- ATxConfigTest/Properties/AssemblyInfo.cs | 2 ++ ATxService/Properties/AssemblyInfo.cs | 19 ++++++++++--------- ATxTray/Properties/AssemblyInfo.cs | 2 ++ 4 files changed, 24 insertions(+), 18 deletions(-) diff --git a/ATxCommon/Properties/AssemblyInfo.cs b/ATxCommon/Properties/AssemblyInfo.cs index 9488ca0..04d826f 100644 --- a/ATxCommon/Properties/AssemblyInfo.cs +++ b/ATxCommon/Properties/AssemblyInfo.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Runtime.InteropServices; +using ATxCommon; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -31,13 +32,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(ATxCommon.BuildDetails.GitMajor + "." + - ATxCommon.BuildDetails.GitMinor + "." + - ATxCommon.BuildDetails.GitPatch + ".0")] -[assembly: AssemblyFileVersion(ATxCommon.BuildDetails.GitMajor + "." + - ATxCommon.BuildDetails.GitMinor + "." + - ATxCommon.BuildDetails.GitPatch + ".0")] +[assembly: AssemblyVersion(BuildDetails.GitMajor + "." + + BuildDetails.GitMinor + "." + + BuildDetails.GitPatch + ".0")] +[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." + + BuildDetails.GitMinor + "." + + BuildDetails.GitPatch + ".0")] -[assembly: AssemblyInformationalVersion(ATxCommon.BuildDetails.BuildDate + - " " + ATxCommon.BuildDetails.GitCommit + - " (" + ATxCommon.BuildDetails.GitBranch + ")")] \ No newline at end of file +[assembly: AssemblyInformationalVersion(BuildDetails.BuildDate + + " " + BuildDetails.GitCommit + + " (" + BuildDetails.GitBranch + ")")] \ No newline at end of file diff --git a/ATxConfigTest/Properties/AssemblyInfo.cs b/ATxConfigTest/Properties/AssemblyInfo.cs index 1c4175b..27ba0fb 100644 --- a/ATxConfigTest/Properties/AssemblyInfo.cs +++ b/ATxConfigTest/Properties/AssemblyInfo.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Runtime.InteropServices; +using ATxCommon; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -41,3 +42,4 @@ using System.Runtime.InteropServices; [assembly: AssemblyInformationalVersion(BuildDetails.BuildDate + " " + BuildDetails.GitCommit + " (" + BuildDetails.GitBranch + ")")] + diff --git a/ATxService/Properties/AssemblyInfo.cs b/ATxService/Properties/AssemblyInfo.cs index dab30e9..f22d2ab 100644 --- a/ATxService/Properties/AssemblyInfo.cs +++ b/ATxService/Properties/AssemblyInfo.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Runtime.InteropServices; +using ATxCommon; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -31,13 +32,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(ATxCommon.BuildDetails.GitMajor + "." + - ATxCommon.BuildDetails.GitMinor + "." + - ATxCommon.BuildDetails.GitPatch + ".0")] -[assembly: AssemblyFileVersion(ATxCommon.BuildDetails.GitMajor + "." + - ATxCommon.BuildDetails.GitMinor + "." + - ATxCommon.BuildDetails.GitPatch + ".0")] +[assembly: AssemblyVersion(BuildDetails.GitMajor + "." + + BuildDetails.GitMinor + "." + + BuildDetails.GitPatch + ".0")] +[assembly: AssemblyFileVersion(BuildDetails.GitMajor + "." + + BuildDetails.GitMinor + "." + + BuildDetails.GitPatch + ".0")] -[assembly: AssemblyInformationalVersion(ATxCommon.BuildDetails.BuildDate + - " " + ATxCommon.BuildDetails.GitCommit + - " (" + ATxCommon.BuildDetails.GitBranch + ")")] +[assembly: AssemblyInformationalVersion(BuildDetails.BuildDate + + " " + BuildDetails.GitCommit + + " (" + BuildDetails.GitBranch + ")")] diff --git a/ATxTray/Properties/AssemblyInfo.cs b/ATxTray/Properties/AssemblyInfo.cs index 9642ea0..5ec8d16 100644 --- a/ATxTray/Properties/AssemblyInfo.cs +++ b/ATxTray/Properties/AssemblyInfo.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Runtime.InteropServices; +using ATxCommon; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -41,3 +42,4 @@ using System.Runtime.InteropServices; [assembly: AssemblyInformationalVersion(BuildDetails.BuildDate + " " + BuildDetails.GitCommit + " (" + BuildDetails.GitBranch + ")")] + -- GitLab