From 84b0ca06f8dcd7c6a9cf8f47edddd71613e6a147 Mon Sep 17 00:00:00 2001 From: FH Date: Sat, 30 Jul 2022 03:14:04 +0200 Subject: [PATCH] added tt4 --- FCS.Lib.BrReg.csproj | 16 ++++++++++++++- Properties/AssemblyInfo.cs | 40 ++++++++++++------------------------ Properties/AssemblyInfo.tt | 42 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+), 28 deletions(-) create mode 100644 Properties/AssemblyInfo.tt diff --git a/FCS.Lib.BrReg.csproj b/FCS.Lib.BrReg.csproj index 3c5db7e..c9658d3 100644 --- a/FCS.Lib.BrReg.csproj +++ b/FCS.Lib.BrReg.csproj @@ -51,11 +51,15 @@ - + + True + True + AssemblyInfo.tt + @@ -70,7 +74,17 @@ + + TextTemplatingFileGenerator + AssemblyInfo.cs + + + + + + "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\TextTransform.exe" -out "$(ProjectDir)Properties\AssemblyInfo.cs" "$(ProjectDir)Properties\AssemblyInfo.tt" + \ No newline at end of file diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 67acdaf..36ac5e7 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -1,35 +1,21 @@ -using System.Reflection; +// This code was generated by a tool. Any changes made manually will be lost +// the next time this code is regenerated. + +using System.Reflection; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. [assembly: AssemblyTitle("FCS.Lib.BrReg")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("FCS.Lib.BrReg")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("FCS.Lib.BrReg")] -[assembly: AssemblyCopyright("Copyright © 2022")] -[assembly: AssemblyTrademark("")] +[assembly: AssemblyCompany("FCS")] +[assembly: AssemblyProduct("FCS.Lib.BrREg")] +[assembly: AssemblyCopyright("AGPL-3.0-or-later Copyright © FCS 2015-2022")] +[assembly: AssemblyTrademark("© FCS")] [assembly: AssemblyCulture("")] -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. + [assembly: ComVisible(false)] +[assembly: Guid("8D850197-78DB-4D16-A91F-E5BB6E8880A7")] -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("26f0a4b8-14b2-4d23-bd94-2ede9cd0ddcd")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// 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.100")] +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] \ No newline at end of file diff --git a/Properties/AssemblyInfo.tt b/Properties/AssemblyInfo.tt new file mode 100644 index 0000000..931f645 --- /dev/null +++ b/Properties/AssemblyInfo.tt @@ -0,0 +1,42 @@ +<#@ template debug="true" hostspecific="false" language="C#" #> +<#@ output extension=".cs" #> +<# + int major = 1; + int minor = 0; // Official == even, Preview == odd + int build = 1; + int revision = 0; + + string version = String.Format("{0}.{1}.{2}.{3}", major, minor, build, revision); + + if (minor % 2 == 1) // Preview build + { + // Auto-generate the build and revision + + DateTime buildTime = DateTime.Now; + + build = (1000 * (buildTime.Year % 100)) + buildTime.DayOfYear; + revision = (100 * buildTime.Hour) + buildTime.Minute; + version = String.Format("{0}.{1}.{2:00000}.{3:0000}", major, minor, build, revision); + } + #> +// This code was generated by a tool. Any changes made manually will be lost +// the next time this code is regenerated. + +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("FCS.Lib.BrReg")] +[assembly: AssemblyDescription("FCS.Lib.BrReg")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("FCS")] +[assembly: AssemblyProduct("FCS.Lib.BrREg")] +[assembly: AssemblyCopyright("AGPL-3.0-or-later Copyright © FCS 2015-2022")] +[assembly: AssemblyTrademark("© FCS")] +[assembly: AssemblyCulture("")] + + +[assembly: ComVisible(false)] +[assembly: Guid("8D850197-78DB-4D16-A91F-E5BB6E8880A7")] + +[assembly: AssemblyVersion("<#= version #>")] +[assembly: AssemblyFileVersion("<#= version #>")] \ No newline at end of file