Skip to content

Commit 2d75f6d

Browse files
committed
Version 3.0.0 Beta 1
1 parent 69f42f6 commit 2d75f6d

File tree

28 files changed

+56
-45
lines changed

28 files changed

+56
-45
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Change log
22
==========
33

4+
## v3.0.0 Beta 1 - April 8, 2018
5+
* Format of the error messages was unified
6+
* Created a new exception classes: `JsCompilationException`, `JsEngineException`, `JsFatalException`, `JsTimeoutException` and `JsUsageException`. These exceptions are responsible for handling errors, some of which were previously handled by the `JsRuntimeException` class.
7+
* In the `JsException` class was added two new properties: `Category` and `Description`
8+
* From the `JsRuntimeException` class was removed one property - `ErrorCode`
9+
* In the `JsRuntimeException` class was added three new properties: `Type`, `DocumentName` and `CallStack`
10+
* `JsScriptInterruptedException` class was renamed to the `JsInterruptedException` class and now is inherited from the `JsRuntimeException` class
11+
* `JsEngineLoadException` class now is inherited from the `JsEngineException` class
12+
* Removed a `EmptyValueException` class
13+
* `Format` method of the `JsErrorHelpers` class was renamed to the `GenerateErrorDetails`
14+
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 3.0.0 Beta 1
15+
* In JavaScriptEngineSwitcher.V8:
16+
* Added support of Microsoft ClearScript.V8 version 5.5.2 (support of V8 version 6.5.254.41)
17+
* Now the Microsoft ClearScript.V8 requires the [Microsoft Visual C++ Redistributable for Visual Studio 2017](https://www.visualstudio.com/downloads/#microsoft-visual-c-redistributable-for-visual-studio-2017)
18+
* In JavaScriptEngineSwitcher.Jurassic added support of Jurassic version of February 24, 2018
19+
* In JavaScriptEngineSwitcher.Jint in configuration settings of the Jint JS engine a `Timeout` property has been replaced by the `TimeoutInterval` property (default `TimeSpan.Zero`)
20+
* In JavaScriptEngineSwitcher.ChakraCore:
21+
* ChakraCore was updated to version 1.8.2
22+
* Now the ChakraCore for Windows requires the [Microsoft Visual C++ Redistributable for Visual Studio 2017](https://www.visualstudio.com/downloads/#microsoft-visual-c-redistributable-for-visual-studio-2017)
23+
* In configuration settings of the ChakraCore JS engine was added one new property - `MaxStackSize` (default `492` or `984` KB)
24+
425
## v3.0.0 Alpha 10 - January 3, 2018
526
* In JavaScriptEngineSwitcher.V8:
627
* Added support of Microsoft ClearScript.V8 version 5.5.1.1 (support of V8 version 6.3.292.48)

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha8</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFramework>netcoreapp1.0</TargetFramework>
88
<RuntimeFrameworkVersion>1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Exe</OutputType>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha10</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFramework>net451</TargetFramework>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 2.0 MVC 2 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha8</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFramework>netcoreapp2.0</TargetFramework>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.Logic/JavaScriptEngineSwitcher.Sample.Logic.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Logic for Samples</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha7</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net40;net451;netstandard1.6;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

samples/JavaScriptEngineSwitcher.Sample.Resources/JavaScriptEngineSwitcher.Sample.Resources.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Resources for Samples</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha7</VersionSuffix>
6+
<VersionSuffix>beta1</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>

src/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: ChakraCore</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</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>
@@ -60,10 +60,7 @@ This package does not contain the native implementations of ChakraCore. Therefor
6060
</ItemGroup>
6161

6262
<Target Name="СonvertResxToCs" BeforeTargets="BeforeCompile">
63-
<ResxToCsTask
64-
InputDirectory="./Resources/"
65-
Namespace="$(RootNamespace).Resources"
66-
InternalAccessModifier="true" />
63+
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
6764
</Target>
6865

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

src/JavaScriptEngineSwitcher.ChakraCore/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: ChakraCore v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: ChakraCore v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Core/Helpers/JsErrorHelpers.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Text;
66
using System.Text.RegularExpressions;
77

8-
using JavaScriptEngineSwitcher.Core;
98
using JavaScriptEngineSwitcher.Core.Extensions;
109
using JavaScriptEngineSwitcher.Core.Resources;
1110
using JavaScriptEngineSwitcher.Core.Utilities;

src/JavaScriptEngineSwitcher.Core/IJsEngine.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ bool SupportsGarbageCollection
5252
/// <exception cref="ArgumentNullException"/>
5353
/// <exception cref="ArgumentException"/>
5454
/// <exception cref="JsCompilationException"/>
55+
/// <exception cref="JsTimeoutException"/>
5556
/// <exception cref="JsInterruptedException"/>
5657
/// <exception cref="JsRuntimeException"/>
5758
/// <exception cref="JsException"/>
@@ -67,6 +68,7 @@ bool SupportsGarbageCollection
6768
/// <exception cref="ArgumentNullException"/>
6869
/// <exception cref="ArgumentException"/>
6970
/// <exception cref="JsCompilationException"/>
71+
/// <exception cref="JsTimeoutException"/>
7072
/// <exception cref="JsInterruptedException"/>
7173
/// <exception cref="JsRuntimeException"/>
7274
/// <exception cref="JsException"/>
@@ -82,6 +84,7 @@ bool SupportsGarbageCollection
8284
/// <exception cref="ArgumentNullException"/>
8385
/// <exception cref="ArgumentException"/>
8486
/// <exception cref="JsCompilationException"/>
87+
/// <exception cref="JsTimeoutException"/>
8588
/// <exception cref="JsInterruptedException"/>
8689
/// <exception cref="JsRuntimeException"/>
8790
/// <exception cref="JsException"/>
@@ -98,6 +101,7 @@ bool SupportsGarbageCollection
98101
/// <exception cref="ArgumentNullException"/>
99102
/// <exception cref="ArgumentException"/>
100103
/// <exception cref="JsCompilationException"/>
104+
/// <exception cref="JsTimeoutException"/>
101105
/// <exception cref="JsInterruptedException"/>
102106
/// <exception cref="JsRuntimeException"/>
103107
/// <exception cref="JsException"/>
@@ -111,6 +115,7 @@ bool SupportsGarbageCollection
111115
/// <exception cref="ArgumentNullException"/>
112116
/// <exception cref="ArgumentException"/>
113117
/// <exception cref="JsCompilationException"/>
118+
/// <exception cref="JsTimeoutException"/>
114119
/// <exception cref="JsInterruptedException"/>
115120
/// <exception cref="JsRuntimeException"/>
116121
/// <exception cref="JsException"/>
@@ -125,6 +130,7 @@ bool SupportsGarbageCollection
125130
/// <exception cref="ArgumentNullException"/>
126131
/// <exception cref="ArgumentException"/>
127132
/// <exception cref="JsCompilationException"/>
133+
/// <exception cref="JsTimeoutException"/>
128134
/// <exception cref="JsInterruptedException"/>
129135
/// <exception cref="JsRuntimeException"/>
130136
/// <exception cref="JsException"/>
@@ -141,6 +147,7 @@ bool SupportsGarbageCollection
141147
/// <exception cref="FileNotFoundException"/>
142148
/// <exception cref="JsUsageException"/>
143149
/// <exception cref="JsCompilationException"/>
150+
/// <exception cref="JsTimeoutException"/>
144151
/// <exception cref="JsInterruptedException"/>
145152
/// <exception cref="JsRuntimeException"/>
146153
/// <exception cref="JsException"/>
@@ -158,6 +165,7 @@ bool SupportsGarbageCollection
158165
/// <exception cref="NullReferenceException"/>
159166
/// <exception cref="JsUsageException"/>
160167
/// <exception cref="JsCompilationException"/>
168+
/// <exception cref="JsTimeoutException"/>
161169
/// <exception cref="JsInterruptedException"/>
162170
/// <exception cref="JsRuntimeException"/>
163171
/// <exception cref="JsException"/>
@@ -174,6 +182,7 @@ bool SupportsGarbageCollection
174182
/// <exception cref="NullReferenceException"/>
175183
/// <exception cref="JsUsageException"/>
176184
/// <exception cref="JsCompilationException"/>
185+
/// <exception cref="JsTimeoutException"/>
177186
/// <exception cref="JsInterruptedException"/>
178187
/// <exception cref="JsRuntimeException"/>
179188
/// <exception cref="JsException"/>
@@ -188,6 +197,7 @@ bool SupportsGarbageCollection
188197
/// <exception cref="ObjectDisposedException"/>
189198
/// <exception cref="ArgumentNullException"/>
190199
/// <exception cref="ArgumentException"/>
200+
/// <exception cref="JsTimeoutException"/>
191201
/// <exception cref="JsInterruptedException"/>
192202
/// <exception cref="JsRuntimeException"/>
193203
/// <exception cref="JsException"/>
@@ -203,6 +213,7 @@ bool SupportsGarbageCollection
203213
/// <exception cref="ObjectDisposedException"/>
204214
/// <exception cref="ArgumentNullException"/>
205215
/// <exception cref="ArgumentException"/>
216+
/// <exception cref="JsTimeoutException"/>
206217
/// <exception cref="JsInterruptedException"/>
207218
/// <exception cref="JsRuntimeException"/>
208219
/// <exception cref="JsException"/>

src/JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Core</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</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>

src/JavaScriptEngineSwitcher.Core/Resources/Strings.Designer.cs

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/JavaScriptEngineSwitcher.Core/Resources/Strings.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,6 @@
192192
<data name="ErrorDetails_EngineVersion" xml:space="preserve">
193193
<value>Engine version</value>
194194
</data>
195-
<data name="ErrorDetails_ErrorCode" xml:space="preserve">
196-
<value>Error code</value>
197-
</data>
198195
<data name="ErrorDetails_LineNumber" xml:space="preserve">
199196
<value>Line number</value>
200197
</data>

src/JavaScriptEngineSwitcher.Core/Resources/Strings.ru-ru.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,6 @@
192192
<data name="ErrorDetails_EngineVersion" xml:space="preserve">
193193
<value>Версия движка</value>
194194
</data>
195-
<data name="ErrorDetails_ErrorCode" xml:space="preserve">
196-
<value>Код ошибки</value>
197-
</data>
198195
<data name="ErrorDetails_LineNumber" xml:space="preserve">
199196
<value>Номер строки</value>
200197
</data>

src/JavaScriptEngineSwitcher.Core/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Core v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: Core v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: MS Dependency Injection</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: MS Dependency Injection v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: MS Dependency Injection v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Jint</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jint v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: Jint v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Jurassic/JavaScriptEngineSwitcher.Jurassic.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Jurassic</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard2.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.Jurassic/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jurassic v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: Jurassic v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Msie/JavaScriptEngineSwitcher.Msie.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: MSIE</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</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>

src/JavaScriptEngineSwitcher.Msie/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: MSIE v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: MSIE v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: V8</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha10</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFramework>net45</TargetFramework>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.V8/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: V8 v3.0.0 Alpha 10
4+
README file for JS Engine Switcher: V8 v3.0.0 Beta 1
55

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

src/JavaScriptEngineSwitcher.Vroom/JavaScriptEngineSwitcher.Vroom.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Vroom</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha9</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.6;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>
@@ -48,10 +48,7 @@ For correct working of the VroomJs on Windows require the Visual C++ Redistribut
4848
</ItemGroup>
4949

5050
<Target Name="СonvertResxToCs" BeforeTargets="BeforeCompile">
51-
<ResxToCsTask
52-
InputDirectory="./Resources/"
53-
Namespace="$(RootNamespace).Resources"
54-
InternalAccessModifier="true" />
51+
<ResxToCsTask InputDirectory="./Resources/" Namespace="$(RootNamespace).Resources" InternalAccessModifier="true" />
5552
</Target>
5653

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

src/JavaScriptEngineSwitcher.Vroom/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Vroom v3.0.0 Alpha 9
4+
README file for JS Engine Switcher: Vroom v3.0.0 Beta 1
55

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

test/JavaScriptEngineSwitcher.Tests/JavaScriptEngineSwitcher.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Tests</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>alpha10</VersionSuffix>
6+
<VersionSuffix>beta1</VersionSuffix>
77
<TargetFrameworks>net452;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.9</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)