Create a Nuget package that will contain the reference assembly for mscorlib.
authorAlex Ghiondea <ghiondea.alexandru@microsoft.com>
Tue, 10 May 2016 19:46:55 +0000 (12:46 -0700)
committerAlex Ghiondea <ghiondea.alexandru@microsoft.com>
Tue, 10 May 2016 22:52:03 +0000 (15:52 -0700)
src/.nuget/Microsoft.TargetingPack.Private.CoreCLR/Microsoft.TargetingPack.Private.CoreCLR.pkgproj [new file with mode: 0644]
src/.nuget/descriptions.json

diff --git a/src/.nuget/Microsoft.TargetingPack.Private.CoreCLR/Microsoft.TargetingPack.Private.CoreCLR.pkgproj b/src/.nuget/Microsoft.TargetingPack.Private.CoreCLR/Microsoft.TargetingPack.Private.CoreCLR.pkgproj
new file mode 100644 (file)
index 0000000..c9d9d0c
--- /dev/null
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+
+  <PropertyGroup>
+    <Version>1.0.1</Version>
+    <SkipPackageFileCheck>true</SkipPackageFileCheck>
+    <SkipValidatePackage>true</SkipValidatePackage>
+    <PackagePlatforms>x64;</PackagePlatforms>
+    <OutputPath>$(PackagesOutputPath)</OutputPath>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <File Include="$(BinDir)/ref/mscorlib.dll">
+      <TargetPath>lib/netstandard1.0</TargetPath>
+    </File>
+  </ItemGroup>
+
+  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project>
index 23b2e2e..8a8333f 100644 (file)
@@ -8,5 +8,10 @@
         "Name": "Microsoft.NETCore.Runtime.CoreCLR",
         "Description": "The .NET Core runtime, called CoreCLR, and the base library, called mscorlib. It includes the garbage collector, JIT compiler, base .NET data types and many low-level classes.",
         "CommonTypes": [ ]
+    },
+    {
+        "Name": "Microsoft.TargetingPack.Private.CoreCLR",
+        "Description": "Contains a private targeting pack which contains only the CoreCLR mscorlib reference assembly. Used for producing platform specific libraries such as facades.",
+        "CommonTypes": [ ]
     }
 ]