Skip to content

Commit

Permalink
Version 3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Mar 1, 2024
1 parent 2199a20 commit 7c2dced
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 27 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change log
==========

## v3.2.5 - March 1, 2024
* Added a `README.md` file to NuGet package

## v3.2.4 - January 8, 2024
* Fixed a error that occurred in the `ReflectionHelpers.IsAllowedProperty` method when running on .NET Core 1.0

Expand Down
2 changes: 2 additions & 0 deletions build/common.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<Project>
<PropertyGroup>
<Copyright>Copyright © 2012-2024 Andrey Taritsyn</Copyright>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
</PropertyGroup>
</Project>
8 changes: 2 additions & 6 deletions src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine for .NET</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
<LangVersion>7.3</LangVersion>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591;NU1605</NoWarn>
Expand All @@ -29,17 +28,14 @@
<NeutralLanguage>en-US</NeutralLanguage>
<PackageOutputPath>../../nuget</PackageOutputPath>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="AdvancedStringBuilder" Version="0.1.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="AdvancedStringBuilder" Version="0.1.1" />
<PackageReference Include="ResxToCs.MSBuild" Version="1.0.0-alpha7" PrivateAssets="All" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/MsieJavaScriptEngine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MsieJavaScriptEngine",
"version": "3.2.4",
"version": "3.2.5",
"devDependencies": {
"uglify-js": "3.16.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/MsieJavaScriptEngine/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for MSIE JavaScript Engine for .NET v3.2.4
README file for MSIE JavaScript Engine for .NET v3.2.5

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Benchmarks</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Auto Mode</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
Expand All @@ -14,7 +13,7 @@
<Import Project="../../build/common.props" />

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />

<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Chakra ActiveScript Mode</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net462</TargetFrameworks>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
Expand All @@ -14,7 +13,7 @@
<Import Project="../../build/common.props" />

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />

<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

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

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />

<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

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

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />

<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Tests for Classic Mode</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net462</TargetFrameworks>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
Expand All @@ -14,7 +13,7 @@
<Import Project="../../build/common.props" />

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />

<ProjectReference Include="../MsieJavaScriptEngine.Test.Common/MsieJavaScriptEngine.Test.Common.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

<PropertyGroup>
<Product>MSIE JavaScript Engine: Common Tests</Product>
<VersionPrefix>3.2.4</VersionPrefix>
<VersionPrefix>3.2.5</VersionPrefix>
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
Expand All @@ -15,7 +14,7 @@
<Import Project="../../build/strong-name-signing.props" />

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />

Expand Down

0 comments on commit 7c2dced

Please sign in to comment.