Skip to content

Commit

Permalink
Public release. E-MSBuild 1.14.1
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
3F committed Jul 31, 2020
1 parent c03c933 commit 9cd4453
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.0
1.14.1
2 changes: 1 addition & 1 deletion E-MSBuild/E-MSBuild.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" Condition="'$(TurnOffSdkImport)'!='true'" />

<PropertyGroup>
<Version>1.14.0</Version>
<Version>1.14.1</Version>
<BuildInfoVSSBE></BuildInfoVSSBE>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion E-MSBuild/EvMSBuildVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
26 changes: 25 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 9cd4453

Please sign in to comment.