Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit ea19122

Browse files
committed
Merge branch 'BuildTargetingPackFromCoreCLR' into BuildRefAssemblyPerTargetOS
2 parents 421d504 + 13e35ed commit ea19122

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
4+
5+
<PropertyGroup>
6+
<Version>1.0.1</Version>
7+
<SkipPackageFileCheck>true</SkipPackageFileCheck>
8+
<SkipValidatePackage>true</SkipValidatePackage>
9+
<PackagePlatforms>x64;x86;arm</PackagePlatforms>
10+
<OutputPath>$(PackagesOutputPath)</OutputPath>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<File Include="$(BinDir)/ref/mscorlib.dll">
15+
<TargetPath>lib/netstandard1.0</TargetPath>
16+
</File>
17+
</ItemGroup>
18+
19+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
20+
</Project>

src/.nuget/descriptions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,10 @@
88
"Name": "Microsoft.NETCore.Runtime.CoreCLR",
99
"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.",
1010
"CommonTypes": [ ]
11+
},
12+
{
13+
"Name": "Microsoft.TargetingPack.Private.CoreCLR",
14+
"Description": "Contains a private targeting pack which contains only the CoreCLR mscorlib reference assembly. Used for producing platform specific libraries such as facades.",
15+
"CommonTypes": [ ]
1116
}
1217
]

0 commit comments

Comments
 (0)