Skip to content

Commit c0bcf9b

Browse files
committed
In JavaScriptEngineSwitcher.ChakraCore.Native.win-x86, JavaScriptEngineSwitcher.ChakraCore.Native.win-x64 and JavaScriptEngineSwitcher.ChakraCore.Native.win8-arm packages solved the problem with duplication of the native assemblies in the bin directory of .NET Core application
1 parent 5c42359 commit c0bcf9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<ItemGroup>
3+
<ItemGroup Condition=" $(RuntimeFrameworkVersion) == '' ">
44
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win7-x64\native\ChakraCore.dll">
55
<Link>x64\ChakraCore.dll</Link>
66
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>

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,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<ItemGroup>
3+
<ItemGroup Condition=" $(RuntimeFrameworkVersion) == '' ">
44
<None Include="$(MSBuildThisFileDirectory)..\runtimes\win7-x86\native\ChakraCore.dll">
55
<Link>x86\ChakraCore.dll</Link>
66
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>

NuGet/JavaScriptEngineSwitcher.ChakraCore.Native.win8-arm/build/JavaScriptEngineSwitcher.ChakraCore.Native.win8-arm.props

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

0 commit comments

Comments
 (0)