Skip to content

Commit 3e82728

Browse files
committed
In JavaScriptEngineSwitcher.V8.Native.win-* and JavaScriptEngineSwitcher.ChakraCore.Native.win-* packages the directories with win7-* RIDs was renamed to win-*
1 parent 3299d06 commit 3e82728

25 files changed

+46
-48
lines changed

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.ChakraCore.Native.win-x64</id>
5-
<version>2.4.15</version>
5+
<version>2.4.16</version>
66
<title>JS Engine Switcher: ChakraCore for Windows (x64)</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -14,7 +14,7 @@
1414

1515
For correct working of the ChakraCore require the Microsoft Visual C++ 2015 Redistributable.</description>
1616
<summary>This package complements the JavaScriptEngineSwitcher.ChakraCore package and contains the native implementation of ChakraCore version 1.8.3 for Windows (x64).</summary>
17-
<releaseNotes>ChakraCore was updated to version 1.8.3.</releaseNotes>
17+
<releaseNotes>The directory with `win7-x64` RID was renamed to `win-x64`.</releaseNotes>
1818
<copyright>Copyright (c) 2013-2018 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1919
<language>en-US</language>
2020
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore Windows x64</tags>

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/build-package.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ call "..\setup.cmd"
88
rmdir runtimes /Q/S
99
del chakra-core-license.txt /Q/S
1010

11-
xcopy "%lib_dir%\runtimes\win-x64\native\ChakraCore.dll" runtimes\win7-x64\native\
11+
xcopy "%lib_dir%\runtimes\win-x64\native\ChakraCore.dll" runtimes\win-x64\native\
1212
copy "%licenses_dir%\chakra-core-license.txt" chakra-core-license.txt /Y
1313

1414
%nuget_package_manager% pack "..\%project_name%\%project_name%.nuspec"

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Condition=" $(RuntimeFrameworkVersion) == '' ">
4-
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win7-x64\native\ChakraCore.dll">
4+
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win-x64\native\ChakraCore.dll">
55
<Link>x64\ChakraCore.dll</Link>
66
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
77
<Visible>False</Visible>

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: ChakraCore for Windows x64 v2.4.15
4+
README file for JS Engine Switcher: ChakraCore for Windows x64 v2.4.16
55

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

@@ -20,7 +20,7 @@
2020
=============
2121
RELEASE NOTES
2222
=============
23-
ChakraCore was updated to version 1.8.3.
23+
The directory with `win7-x64` RID was renamed to `win-x64`.
2424

2525
====================
2626
POST-INSTALL ACTIONS

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/tools/Install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ if ($project.Type -eq "Web Site") {
1111
New-Item -ItemType Directory -Force -Path $assembly64DestDirectoryPath
1212
}
1313

14-
$assembly64SourceFilePath = Join-Path $runtimesDirectoryPath ("win7-x64/native/" + $assemblyFileName)
14+
$assembly64SourceFilePath = Join-Path $runtimesDirectoryPath ("win-x64/native/" + $assemblyFileName)
1515
Copy-Item $assembly64SourceFilePath $assembly64DestDirectoryPath -Force
1616
}

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>JavaScriptEngineSwitcher.ChakraCore.Native.win-x86</id>
5-
<version>2.4.15</version>
5+
<version>2.4.16</version>
66
<title>JS Engine Switcher: ChakraCore for Windows (x86)</title>
77
<authors>Andrey Taritsyn</authors>
88
<owners>Andrey Taritsyn</owners>
@@ -14,7 +14,7 @@
1414

1515
For correct working of the ChakraCore require the Microsoft Visual C++ 2015 Redistributable.</description>
1616
<summary>This package complements the JavaScriptEngineSwitcher.ChakraCore package and contains the native implementation of ChakraCore version 1.8.3 for Windows (x86).</summary>
17-
<releaseNotes>ChakraCore was updated to version 1.8.3.</releaseNotes>
17+
<releaseNotes>The directory with `win7-x86` RID was renamed to `win-x86`.</releaseNotes>
1818
<copyright>Copyright (c) 2013-2018 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1919
<language>en-US</language>
2020
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore Windows x86</tags>

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86/build-package.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ call "..\setup.cmd"
88
rmdir runtimes /Q/S
99
del chakra-core-license.txt /Q/S
1010

11-
xcopy "%lib_dir%\runtimes\win-x86\native\ChakraCore.dll" runtimes\win7-x86\native\
11+
xcopy "%lib_dir%\runtimes\win-x86\native\ChakraCore.dll" runtimes\win-x86\native\
1212
copy "%licenses_dir%\chakra-core-license.txt" chakra-core-license.txt /Y
1313

1414
%nuget_package_manager% pack "..\%project_name%\%project_name%.nuspec"

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86/build/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Condition=" $(RuntimeFrameworkVersion) == '' ">
4-
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win7-x86\native\ChakraCore.dll">
4+
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win-x86\native\ChakraCore.dll">
55
<Link>x86\ChakraCore.dll</Link>
66
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
77
<Visible>False</Visible>

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: ChakraCore for Windows x86 v2.4.15
4+
README file for JS Engine Switcher: ChakraCore for Windows x86 v2.4.16
55

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

@@ -20,7 +20,7 @@
2020
=============
2121
RELEASE NOTES
2222
=============
23-
ChakraCore was updated to version 1.8.3.
23+
The directory with `win7-x86` RID was renamed to `win-x86`.
2424

2525
====================
2626
POST-INSTALL ACTIONS

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86/tools/Install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ if ($project.Type -eq "Web Site") {
1111
New-Item -ItemType Directory -Force -Path $assembly32DestDirectoryPath
1212
}
1313

14-
$assembly32SourceFilePath = Join-Path $runtimesDirectoryPath ("win7-x86/native/" + $assemblyFileName)
14+
$assembly32SourceFilePath = Join-Path $runtimesDirectoryPath ("win-x86/native/" + $assemblyFileName)
1515
Copy-Item $assembly32SourceFilePath $assembly32DestDirectoryPath -Force
1616
}

0 commit comments

Comments
 (0)