Skip to content

Commit b486c3c

Browse files
committed
Adding updated nuspec
1 parent 195604c commit b486c3c

16 files changed

+406
-33
lines changed

Build/Microsoft.ChakraCore.nuspec

Lines changed: 0 additions & 33 deletions
This file was deleted.

Build/NuGet/.pack-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.2-pre
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.ChakraCore.ARM</id>
5+
<!-- Note: actual version number is overridden by the NuGet package creation command. -->
6+
<version>$version$</version>
7+
<authors>Chakra Team</authors>
8+
<owners>Chakra Team</owners>
9+
<licenseUrl>https://github.com/Microsoft/ChakraCore/blob/master/LICENSE.txt</licenseUrl>
10+
<projectUrl>https://github.com/Microsoft/ChakraCore</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<developmentDependency>true</developmentDependency>
13+
<description>ChakraCore is the core part of the Chakra Javascript engine that powers Microsoft Edge.</description>
14+
<releaseNotes>https://github.com/Microsoft/ChakraCore/wiki/Release-Notes</releaseNotes>
15+
<copyright>Copyright (C) 2016 Microsoft</copyright>
16+
<language>en-US</language>
17+
<tags>Chakra,ChakraCore,javascript,js,ecmascript,compiler,platform,oss,opensource,native</tags>
18+
<dependencies>
19+
<group targetFramework=".NETStandard1.0" />
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="_._" target="lib\netstandard1.0\"/>
24+
25+
<file src="Microsoft.ChakraCore.ARM.props" target="build\netstandard1.0"/>
26+
27+
<file src="..\VcBuild\bin\arm_release\ChakraCore.dll" target="runtimes\win8-arm\native\ChakraCore.dll" />
28+
</files>
29+
</package>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win8-ARM\native\*">
5+
<Link>%(Filename)%(Extension)</Link>
6+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
7+
<Visible>False</Visible>
8+
</Content>
9+
</ItemGroup>
10+
</Project>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.ChakraCore.Symbols</id>
5+
<!-- Note: actual version number is overridden by the NuGet package creation command. -->
6+
<version>$version$</version>
7+
<authors>Chakra Team</authors>
8+
<owners>Chakra Team</owners>
9+
<licenseUrl>https://github.com/Microsoft/ChakraCore/blob/master/LICENSE.txt</licenseUrl>
10+
<projectUrl>https://github.com/Microsoft/ChakraCore</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<developmentDependency>true</developmentDependency>
13+
<description>ChakraCore is the core part of the Chakra Javascript engine that powers Microsoft Edge.</description>
14+
<releaseNotes>https://github.com/Microsoft/ChakraCore/wiki/Release-Notes</releaseNotes>
15+
<copyright>Copyright (C) 2016 Microsoft</copyright>
16+
<language>en-US</language>
17+
<tags>Chakra,ChakraCore,javascript,js,ecmascript,compiler,platform,oss,opensource,native</tags>
18+
<dependencies>
19+
<group targetFramework=".NETStandard1.0" />
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="_._" target="lib\netstandard1.0\"/>
24+
25+
<file src="Microsoft.ChakraCore.Symbols.props" target="build\netstandard1.0"/>
26+
27+
<file src="..\VcBuild\bin\x86_release\ChakraCore.pdb" target="runtimes\win7-x86\native\ChakraCore.pdb" />
28+
<file src="..\VcBuild\bin\x64_release\ChakraCore.pdb" target="runtimes\win7-x64\native\ChakraCore.pdb" />
29+
<file src="..\VcBuild\bin\arm_release\ChakraCore.pdb" target="runtimes\win8-arm\native\ChakraCore.pdb" />
30+
</files>
31+
</package>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Condition=" (Exists('packages.config') Or Exists('packages.$(MSBuildProjectName).config')) And '$(Platform)' == 'AnyCPU'">
4+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x86\native\*">
5+
<Link>x86\%(Filename)%(Extension)</Link>
6+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
7+
<Visible>False</Visible>
8+
</Content>
9+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x64\native\*">
10+
<Link>x64\%(Filename)%(Extension)</Link>
11+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
12+
<Visible>False</Visible>
13+
</Content>
14+
</ItemGroup>
15+
<ItemGroup Condition=" (Exists('packages.config') Or Exists('packages.$(MSBuildProjectName).config')) And '$(Platform)' == 'x86'">
16+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x86\native\*">
17+
<Link>%(Filename)%(Extension)</Link>
18+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
19+
<Visible>False</Visible>
20+
</Content>
21+
</ItemGroup>
22+
<ItemGroup Condition=" (Exists('packages.config') Or Exists('packages.$(MSBuildProjectName).config')) And '$(Platform)' == 'x64'">
23+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x64\native\*">
24+
<Link>%(Filename)%(Extension)</Link>
25+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
26+
<Visible>False</Visible>
27+
</Content>
28+
</ItemGroup>
29+
<ItemGroup Condition=" (Exists('packages.config') Or Exists('packages.$(MSBuildProjectName).config')) And '$(Platform)' == 'ARM'">
30+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win8-arm\native\*">
31+
<Link>%(Filename)%(Extension)</Link>
32+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
33+
<Visible>False</Visible>
34+
</Content>
35+
</ItemGroup>
36+
</Project>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.ChakraCore.X64</id>
5+
<!-- Note: actual version number is overridden by the NuGet package creation command. -->
6+
<version>$version$</version>
7+
<authors>Chakra Team</authors>
8+
<owners>Chakra Team</owners>
9+
<licenseUrl>https://github.com/Microsoft/ChakraCore/blob/master/LICENSE.txt</licenseUrl>
10+
<projectUrl>https://github.com/Microsoft/ChakraCore</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<developmentDependency>true</developmentDependency>
13+
<description>ChakraCore is the core part of the Chakra Javascript engine that powers Microsoft Edge.</description>
14+
<releaseNotes>https://github.com/Microsoft/ChakraCore/wiki/Release-Notes</releaseNotes>
15+
<copyright>Copyright (C) 2016 Microsoft</copyright>
16+
<language>en-US</language>
17+
<tags>Chakra,ChakraCore,javascript,js,ecmascript,compiler,platform,oss,opensource,native</tags>
18+
<dependencies>
19+
<group targetFramework=".NETStandard1.0" />
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="_._" target="lib\netstandard1.0\"/>
24+
25+
<file src="Microsoft.ChakraCore.X64.props" target="build\netstandard1.0"/>
26+
27+
<file src="..\VcBuild\bin\x64_release\ChakraCore.dll" target="runtimes\win7-x64\native\ChakraCore.dll" />
28+
</files>
29+
</package>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x64\native\*">
5+
<Link>%(Filename)%(Extension)</Link>
6+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
7+
<Visible>False</Visible>
8+
</Content>
9+
</ItemGroup>
10+
</Project>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.ChakraCore.X86</id>
5+
<!-- Note: actual version number is overridden by the NuGet package creation command. -->
6+
<version>$version$</version>
7+
<authors>Chakra Team</authors>
8+
<owners>Chakra Team</owners>
9+
<licenseUrl>https://github.com/Microsoft/ChakraCore/blob/master/LICENSE.txt</licenseUrl>
10+
<projectUrl>https://github.com/Microsoft/ChakraCore</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<developmentDependency>true</developmentDependency>
13+
<description>ChakraCore is the core part of the Chakra Javascript engine that powers Microsoft Edge.</description>
14+
<releaseNotes>https://github.com/Microsoft/ChakraCore/wiki/Release-Notes</releaseNotes>
15+
<copyright>Copyright (C) 2016 Microsoft</copyright>
16+
<language>en-US</language>
17+
<tags>Chakra,ChakraCore,javascript,js,ecmascript,compiler,platform,oss,opensource,native</tags>
18+
<dependencies>
19+
<group targetFramework=".NETStandard1.0" />
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="_._" target="lib\netstandard1.0\"/>
24+
25+
<file src="Microsoft.ChakraCore.X86.props" target="build\netstandard1.0"/>
26+
27+
<file src="..\VcBuild\bin\x86_release\ChakraCore.dll" target="runtimes\win7-x86\native\ChakraCore.dll" />
28+
</files>
29+
</package>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Content Include="$(MSBuildThisFileDirectory)..\..\runtimes\win7-x86\native\*">
5+
<Link>%(Filename)%(Extension)</Link>
6+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
7+
<Visible>False</Visible>
8+
</Content>
9+
</ItemGroup>
10+
</Project>

0 commit comments

Comments
 (0)