diff options
author | Arnavion <arnavion@gmail.com> | 2013-12-27 12:05:07 -0800 |
---|---|---|
committer | Arnavion <arnavion@gmail.com> | 2013-12-27 12:05:07 -0800 |
commit | c7bf4b0474c613f81e3724043386373d7bc7d2a3 (patch) | |
tree | 82a47c7c7306a736f0d6ec8afbd17ac0eb45f68e /version.include.tt | |
parent | 61ceaef57e19f7b19669bca4f7972123d2e6b119 (diff) |
Replaced use of T4 templates with PS-based templates.
TextTransform.exe is not available with Express versions of Visual Studio.
Diffstat (limited to 'version.include.tt')
-rw-r--r-- | version.include.tt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/version.include.tt b/version.include.tt deleted file mode 100644 index ab77a6d9..00000000 --- a/version.include.tt +++ /dev/null @@ -1,12 +0,0 @@ -<#@ - template debug="false" hostspecific="false" language="C#" #><#@ - assembly name="System.Core" #><#@ - import namespace="System.IO" #><#@ - import namespace="System.Linq" #><#@ - import namespace="System.Text.RegularExpressions" #><# - var versionParts = File.ReadLines(Path.Combine(System.Environment.GetEnvironmentVariable("SOLUTIONDIR"), "configure.ac")) - .Select(line => Regex.Match(line, @"^AC_INIT\(\[HexChat\],\[([^]]+)\]\)$")) - .First(match => match.Success) - .Groups[1].Value - .Split('.'); -#> \ No newline at end of file |