From 746e9a246a1920ba821f37b6b23df6cc3ecbba4f Mon Sep 17 00:00:00 2001 From: "Denis Kuzmin [ GitHub/3F ]" Date: Fri, 31 Jul 2020 19:19:03 +0300 Subject: [PATCH] Public release. E-MSBuild 1.14.1 * FIXED: Fixed possible "[MSBuild]::GetDirectoryNameOfFileAbove('', sdkmanifest.xml)" cannot be evaluated. When msbuild 16.0 and: ``` WindowsSdkDir = $([MSBUILD]::GetDirectoryNameOfFileAbove('$(MSBUILDTHISFILEDIRECTORY)', 'sdkmanifest.xml'))\ ``` * CHANGED: Updated LSender 1.15 https://github.com/3F/LSender/releases/tag/1.15 * CHANGED: Updated package tools: GetNuTool 1.8 https://github.com/3F/GetNuTool/releases/tag/1.8 hMSBuild 2.3 https://github.com/3F/hMSBuild/releases/tag/v2.3 * KNOWN: Compatibility with Microsoft.Build 16+. Issue #1 Expected that IeXod will replace this component soon https://github.com/3F/IeXod --- .version | 2 +- E-MSBuild/E-MSBuild.csproj | 2 +- E-MSBuild/EvMSBuildVersion.cs | 2 +- Readme.md | 2 ++ changelog.txt | 26 +++++++++++++++++++++++++- 5 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.version b/.version index cd99d38..30f101c 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.14.0 \ No newline at end of file +1.14.1 \ No newline at end of file diff --git a/E-MSBuild/E-MSBuild.csproj b/E-MSBuild/E-MSBuild.csproj index d7eb4ef..aef7b88 100644 --- a/E-MSBuild/E-MSBuild.csproj +++ b/E-MSBuild/E-MSBuild.csproj @@ -2,7 +2,7 @@ - 1.14.0 + 1.14.1 diff --git a/E-MSBuild/EvMSBuildVersion.cs b/E-MSBuild/EvMSBuildVersion.cs index 611db9b..ad97f53 100644 --- a/E-MSBuild/EvMSBuildVersion.cs +++ b/E-MSBuild/EvMSBuildVersion.cs @@ -8,7 +8,7 @@ public struct EvMSBuildVersion { public static readonly Version number = new Version(S_NUM_REV); - public const string S_NUM = "1.14.0"; + public const string S_NUM = "1.14.1"; public const string S_REV = "0"; public const string S_NUM_REV = S_NUM + "." + S_REV; diff --git a/Readme.md b/Readme.md index fc10e20..ae6b2b4 100644 --- a/Readme.md +++ b/Readme.md @@ -4,6 +4,8 @@ Advanced Evaluator of MSBuild scripts aka Advanced MSBuild with user-variables support through [Varhead](https://github.com/3F/Varhead) and more. +It is actively used in projects such as [vsSolutionBuildEvent](https://github.com/3F/vsSolutionBuildEvent), [SobaScript](https://github.com/3F/SobaScript), [vsCommandEvent](https://github.com/3F/vsCommandEvent), + [![Build status](https://ci.appveyor.com/api/projects/status/364cy45ed94gwmto/branch/master?svg=true)](https://ci.appveyor.com/project/3Fs/e-msbuild/branch/master) [![release-src](https://img.shields.io/github/release/3F/E-MSBuild)](https://github.com/3F/E-MSBuild/releases/latest) [![License](https://img.shields.io/badge/License-MIT-74A5C2)](https://github.com/3F/E-MSBuild/blob/master/License.txt) diff --git a/changelog.txt b/changelog.txt index 06209e2..6131d14 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,31 @@ E-MSBuild - https://github.com/3F/E-MSBuild -_ _ _ _ _ +- - - - - - - - - - - - - - - - - - - - - - +[1.14.1] 2020.07.31 + * FIXED: Fixed possible "[MSBuild]::GetDirectoryNameOfFileAbove('', sdkmanifest.xml)" cannot be evaluated. + When msbuild 16.0 and: + ``` + WindowsSdkDir = $([MSBUILD]::GetDirectoryNameOfFileAbove('$(MSBUILDTHISFILEDIRECTORY)', 'sdkmanifest.xml'))\ + ``` + + * CHANGED: Updated LSender 1.15 + https://github.com/3F/LSender/releases/tag/1.15 + + * CHANGED: Updated package tools: + + GetNuTool 1.8 + https://github.com/3F/GetNuTool/releases/tag/1.8 + + hMSBuild 2.3 + https://github.com/3F/hMSBuild/releases/tag/v2.3 + + * KNOWN: Compatibility with Microsoft.Build 16+. Issue #1 + + Expected that IeXod will replace this component soon + https://github.com/3F/IeXod + + [1.14] 2019.09.23 * First public release of the E-MSBuild project.