Skip to content

Commit

Permalink
Public release. .NET DllExport 1.7.4
Browse files Browse the repository at this point in the history
* FIXED: Basic project integration stuck on adding property message. Issue #175.
         Modern VS/MSBuild 16.8+

* FIXED: Fixed integration with Conari and merging modules via ILMerge. Issue #170.

* FIXED: double.NaN leads to errors for non exported methods. Issue #174.
         ```
         syntax error at token '-' in: IL_0029: ldc.r8 -nan(ind)
         ```

* NEW: Manager. Implemented `-no-mgr` key:
        - Do not use manager for automatic restore the remote package.

* CHANGED: FIPS compliant algorithms.
           Unable to install when FIPS enabled. Issue #171.

* CHANGED: Improved the searching paths logic for RootPath and PkgPath,
            to be more loyal when no keys for some reason. Part of #175.

* CHANGED: Updated MvsSln 2.5.3
           https://github.com/3F/MvsSln/releases/tag/2.5.3

* CHANGED: Use special edition for DllExport project. Part of issue #171.
           https://github.com/3F/MvsSln
           branch: edition/DllExport
  • Loading branch information
3F committed Jan 2, 2021
1 parent ae127ca commit c1cc52f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.3
1.7.4
4 changes: 2 additions & 2 deletions DllExportVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ namespace net.r_eg.DllExport

internal struct DllExportVersion
{
public const string S_NUM = "1.7.3";
public const string S_NUM = "1.7.4";
public const string S_REV = "0";
public const string S_REL = "";

public const string S_NUM_REV = S_NUM + "." + S_REV;
public const string S_PRODUCT = "1.7.3";
public const string S_PRODUCT = "1.7.4";

public const string BRANCH_SHA1 = "-";
public const string BRANCH_NAME = "-";
Expand Down
2 changes: 1 addition & 1 deletion MetadataCore/MetadataCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.7.3</Version>
<Version>1.7.4</Version>
<MetadataFxPath>..\MetadataFx\</MetadataFxPath>
</PropertyGroup>

Expand Down
29 changes: 29 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@
.NET DllExport - https://github.com/3F/DllExport
- - - - - - - - - - - - - - - - - - - - - - - - -

[v1.7.4] 2021.01.02

* FIXED: Basic project integration stuck on adding property message. Issue #175.
Modern VS/MSBuild 16.8+

* FIXED: Fixed integration with Conari and merging modules via ILMerge. Issue #170.

* FIXED: double.NaN leads to errors for non exported methods. Issue #174.
```
syntax error at token '-' in: IL_0029: ldc.r8 -nan(ind)
```

* NEW: Manager. Implemented `-no-mgr` key:
- Do not use manager for automatic restore the remote package.

* CHANGED: FIPS compliant algorithms.
Unable to install when FIPS enabled. Issue #171.

* CHANGED: Improved the searching paths logic for RootPath and PkgPath,
to be more loyal when no keys for some reason. Part of #175.

* CHANGED: Updated MvsSln 2.5.3
https://github.com/3F/MvsSln/releases/tag/2.5.3

* CHANGED: Use special edition for DllExport project. Part of issue #171.
https://github.com/3F/MvsSln
branch: edition/DllExport


[v1.7.3] 2020.06.12

* FIXED: Fixed syntax error at token '-' in: IL_002d: ldc.r8 -nan(ind) with "return Double.NaN"
Expand Down

0 comments on commit c1cc52f

Please sign in to comment.