Skip to content

Commit ac9f76b

Browse files
committed
Version 3.0.0 Alpha 3
1 parent e720b6e commit ac9f76b

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
lines changed

CHANGELOG.md

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

4+
## v3.0.0 Alpha 3 - December 10, 2017
5+
* Added support of .NET Standard 2.0
6+
* Fixed a error, that occurred in the `Classic` mode during removing the embedded host objects and types
7+
* Removed a redundant code
8+
* In JsRT modes during calling of the `CollectGarbage` method is no longer performed blocking
9+
410
## v3.0.0 Alpha 2 - November 17, 2017
511
* Fixed a error, that occurred during finding the suitable method overload, that receives numeric values and interfaces as parameters, of the host object
612

src/MsieJavaScriptEngine/MsieJavaScriptEngine.csproj

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine for .NET</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>
@@ -71,10 +71,7 @@
7171
</ItemGroup>
7272

7373
<Target Name="СonvertResxToCs" BeforeTargets="BeforeCompile">
74-
<ResxToCsTask
75-
InputDirectory="./Resources/"
76-
Namespace="$(RootNamespace).Resources"
77-
InternalAccessModifier="true" />
74+
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
7875
</Target>
7976

8077
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />

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.0.0 Alpha 2
4+
README file for MSIE JavaScript Engine for .NET v3.0.0 Alpha 3
55

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Auto Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra ActiveScript Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra Edge JsRT Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Chakra IE JsRT Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Tests for Classic Mode</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>MSIE JavaScript Engine: Common Tests</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha2</VersionSuffix>
6+
<VersionSuffix>alpha3</VersionSuffix>
77
<TargetFrameworks>net40;net451;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.8</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)