Skip to content

Commit 7c2dced

Browse files
committed
Version 3.2.5
1 parent 2199a20 commit 7c2dced

File tree

12 files changed

+23
-27
lines changed

12 files changed

+23
-27
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change log
22
==========
33

4+
## v3.2.5 - March 1, 2024
5+
* Added a `README.md` file to NuGet package
6+
47
## v3.2.4 - January 8, 2024
58
* Fixed a error that occurred in the `ReflectionHelpers.IsAllowedProperty` method when running on .NET Core 1.0
69

build/common.props

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<Copyright>Copyright © 2012-2024 Andrey Taritsyn</Copyright>
4+
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
5+
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
46
</PropertyGroup>
57
</Project>

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine for .NET</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
77
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
8-
<LangVersion>7.3</LangVersion>
98
<OutputType>Library</OutputType>
109
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1110
<NoWarn>$(NoWarn);CS1591;NU1605</NoWarn>
@@ -29,17 +28,14 @@
2928
<NeutralLanguage>en-US</NeutralLanguage>
3029
<PackageOutputPath>../../nuget</PackageOutputPath>
3130
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
32-
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
33-
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
3431
</PropertyGroup>
3532

3633
<Import Project="../../build/common.props" />
3734
<Import Project="../../build/net40-client-target.props" />
3835
<Import Project="../../build/strong-name-signing.props" />
3936

4037
<ItemGroup>
41-
<PackageReference Include="AdvancedStringBuilder" Version="0.1.0" />
42-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
38+
<PackageReference Include="AdvancedStringBuilder" Version="0.1.1" />
4339
<PackageReference Include="ResxToCs.MSBuild" Version="1.0.0-alpha7" PrivateAssets="All" />
4440
</ItemGroup>
4541

src/MsieJavaScriptEngine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MsieJavaScriptEngine",
3-
"version": "3.2.4",
3+
"version": "3.2.5",
44
"devDependencies": {
55
"uglify-js": "3.16.1"
66
},

src/MsieJavaScriptEngine/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for MSIE JavaScript Engine for .NET v3.2.4
4+
README file for MSIE JavaScript Engine for .NET v3.2.5
55

66
--------------------------------------------------------------------------------
77

test/MsieJavaScriptEngine.Benchmarks/MsieJavaScriptEngine.Benchmarks.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Benchmarks</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<OutputType>Exe</OutputType>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
9+
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
910
<IsPackable>false</IsPackable>
1011
</PropertyGroup>
1112

test/MsieJavaScriptEngine.Test.Auto/MsieJavaScriptEngine.Test.Auto.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Auto Mode</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -14,7 +13,7 @@
1413
<Import Project="../../build/common.props" />
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817

1918
<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
2019
</ItemGroup>

test/MsieJavaScriptEngine.Test.ChakraActiveScript/MsieJavaScriptEngine.Test.ChakraActiveScript.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra ActiveScript Mode</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -14,7 +13,7 @@
1413
<Import Project="../../build/common.props" />
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817

1918
<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
2019
</ItemGroup>

test/MsieJavaScriptEngine.Test.ChakraEdgeJsRt/MsieJavaScriptEngine.Test.ChakraEdgeJsRt.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra Edge JsRT Mode</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -14,7 +13,7 @@
1413
<Import Project="../../build/common.props" />
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817

1918
<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
2019
</ItemGroup>

test/MsieJavaScriptEngine.Test.ChakraIeJsRt/MsieJavaScriptEngine.Test.ChakraIeJsRt.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra IE JsRT Mode</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -14,7 +13,7 @@
1413
<Import Project="../../build/common.props" />
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817

1918
<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
2019
</ItemGroup>

test/MsieJavaScriptEngine.Test.Classic/MsieJavaScriptEngine.Test.Classic.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Classic Mode</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -14,7 +13,7 @@
1413
<Import Project="../../build/common.props" />
1514

1615
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817

1918
<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
2019
</ItemGroup>

test/MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Common Tests</Product>
5-
<VersionPrefix>3.2.4</VersionPrefix>
5+
<VersionPrefix>3.2.5</VersionPrefix>
66
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
77
<OutputType>Library</OutputType>
8-
<LangVersion>latest</LangVersion>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
109
<IsTestProject>true</IsTestProject>
1110
<IsPackable>false</IsPackable>
@@ -15,7 +14,7 @@
1514
<Import Project="../../build/strong-name-signing.props" />
1615

1716
<ItemGroup>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1918
<PackageReference Include="NUnit" Version="3.14.0" />
2019
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
2120

0 commit comments

Comments
 (0)