Skip to content

Commit de8705f

Browse files
committed
In JavaScriptEngineSwitcher.Node added support for the Jering.Javascript.NodeJS version 7.0.0
1 parent c18d473 commit de8705f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "7.0.400"
3+
"version": "7.0.401"
44
}
55
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
</ItemGroup>
4545

4646
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
47-
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.21" />
47+
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="6.0.22" />
4848
</ItemGroup>
4949

5050
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
51-
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.10" />
51+
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="7.0.11" />
5252
</ItemGroup>
5353

5454
</Project>

src/JavaScriptEngineSwitcher.Node/JavaScriptEngineSwitcher.Node.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<OutputType>Library</OutputType>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
10-
<NoWarn>$(NoWarn);CS1591;NU5104</NoWarn>
10+
<NoWarn>$(NoWarn);CS1591</NoWarn>
1111
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1212
<DisableDefaultResxToCsConversionTarget>true</DisableDefaultResxToCsConversionTarget>
1313
<CheckEolTargetFramework>false</CheckEolTargetFramework>
@@ -18,16 +18,16 @@
1818
<Import Project="../../build/nuget-for-dotnet-lib.props" />
1919

2020
<PropertyGroup>
21-
<Description>JavaScriptEngineSwitcher.Node contains adapter `NodeJsEngine` (wrapper for the Jering.Javascript.NodeJS (https://github.com/JeringTech/Javascript.NodeJS) version 7.0.0 Beta 5).
21+
<Description>JavaScriptEngineSwitcher.Node contains adapter `NodeJsEngine` (wrapper for the Jering.Javascript.NodeJS (https://github.com/JeringTech/Javascript.NodeJS) version 7.0.0).
2222

2323
This package does not contain the `node.exe`. Therefore, you need to install the Node.js (https://nodejs.org) and add the `node.exe`'s directory to the `Path` environment variable (automatically done by the official installer).</Description>
2424
<PackageTags>$(PackageCommonTags);Node.js;Jering.Javascript.NodeJS</PackageTags>
2525
<PackageIconFullPath>../../Icons/JavaScriptEngineSwitcher_Node_Logo128x128.png</PackageIconFullPath>
26-
<PackageReleaseNotes>Jering.Javascript.NodeJS was updated to version 7.0.0 Beta 5.</PackageReleaseNotes>
26+
<PackageReleaseNotes>Jering.Javascript.NodeJS was updated to version 7.0.0.</PackageReleaseNotes>
2727
</PropertyGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="Jering.Javascript.NodeJS" Version="7.0.0-beta.5" />
30+
<PackageReference Include="Jering.Javascript.NodeJS" Version="7.0.0" />
3131

3232
<ProjectReference Include="../JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj" />
3333
</ItemGroup>

src/JavaScriptEngineSwitcher.Node/readme.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
===========
1414
JavaScriptEngineSwitcher.Node contains adapter `NodeJsEngine` (wrapper for the
1515
Jering.Javascript.NodeJS (https://github.com/JeringTech/Javascript.NodeJS)
16-
version 7.0.0 Beta 5).
16+
version 7.0.0).
1717

1818
This package does not contain the `node.exe`. Therefore, you need to install the
1919
Node.js (https://nodejs.org) and add the `node.exe`'s directory to the `Path`
@@ -22,7 +22,7 @@
2222
=============
2323
RELEASE NOTES
2424
=============
25-
Jering.Javascript.NodeJS was updated to version 7.0.0 Beta 5.
25+
Jering.Javascript.NodeJS was updated to version 7.0.0.
2626

2727
=============
2828
DOCUMENTATION

0 commit comments

Comments
 (0)