summaryrefslogtreecommitdiff
path: root/src/.nuget
diff options
context:
space:
mode:
authorAlex Ghiondea <ghiondea.alexandru@microsoft.com>2016-05-10 12:46:55 -0700
committerAlex Ghiondea <ghiondea.alexandru@microsoft.com>2016-05-10 15:52:03 -0700
commita5ba6fa7ff153c239d1e37939e8a320f3c13acf9 (patch)
treee5990d25351cbdce76ec8c55ac40f0e454a70868 /src/.nuget
parent295566490dc2c6c01f9e5e1db215d005def2d42e (diff)
downloadcoreclr-a5ba6fa7ff153c239d1e37939e8a320f3c13acf9.tar.gz
coreclr-a5ba6fa7ff153c239d1e37939e8a320f3c13acf9.tar.bz2
coreclr-a5ba6fa7ff153c239d1e37939e8a320f3c13acf9.zip
Create a Nuget package that will contain the reference assembly for mscorlib.
Diffstat (limited to 'src/.nuget')
-rw-r--r--src/.nuget/Microsoft.TargetingPack.Private.CoreCLR/Microsoft.TargetingPack.Private.CoreCLR.pkgproj20
-rw-r--r--src/.nuget/descriptions.json5
2 files changed, 25 insertions, 0 deletions
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
index 0000000000..c9d9d0ce22
--- /dev/null
+++ b/src/.nuget/Microsoft.TargetingPack.Private.CoreCLR/Microsoft.TargetingPack.Private.CoreCLR.pkgproj
@@ -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>
diff --git a/src/.nuget/descriptions.json b/src/.nuget/descriptions.json
index 23b2e2eba3..8a8333f290 100644
--- a/src/.nuget/descriptions.json
+++ b/src/.nuget/descriptions.json
@@ -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": [ ]
}
]