Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-01-19 04:06:14 +0300
committerGitHub <noreply@github.com>2017-01-19 04:06:14 +0300
commit3e29cbe31a0ed5b6eee72fe579a3f220fa530eff (patch)
treeb28120276d72888086013a2b71cec1901d2aab67
parentd7f44bc9b3207a1519da8415d1b70358dbcc0bb9 (diff)
Switch to the new CoreCLR package for framework (#2532)
-rw-r--r--src/packaging/netcoreapp/project.json38
-rw-r--r--src/packaging/packages.targets48
-rw-r--r--src/packaging/uap/project.json4
3 files changed, 24 insertions, 66 deletions
diff --git a/src/packaging/netcoreapp/project.json b/src/packaging/netcoreapp/project.json
index 6c036cd40..5d366a435 100644
--- a/src/packaging/netcoreapp/project.json
+++ b/src/packaging/netcoreapp/project.json
@@ -1,42 +1,12 @@
{
"frameworks": {
- "netcoreapp1.2": {
+ "netcoreapp2.0": {
"dependencies": {
- "System.Buffers": "4.4.0-beta-24913-02",
- "System.Console": "4.4.0-beta-24913-02",
- "System.Collections": "4.4.0-beta-24913-02",
- "System.Collections.Concurrent": "4.4.0-beta-24913-02",
- "System.Collections.NonGeneric": "4.4.0-beta-24913-02",
- "System.Diagnostics.Debug": "4.4.0-beta-24913-02",
- "System.Diagnostics.Tracing": "4.4.0-beta-24913-02",
- "System.Diagnostics.Tools": "4.4.0-beta-24913-02",
- "System.Globalization": "4.4.0-beta-24913-02",
- "System.Globalization.Calendars": "4.4.0-beta-24913-02",
- "System.IO": "4.4.0-beta-24913-02",
- "System.IO.FileSystem": "4.4.0-beta-24913-02",
- "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02",
+ "Microsoft.NETCore.App": "2.0.0-beta-001368-00",
+
+ "System.Threading": "4.4.0-beta-24913-02",
"System.Linq": "4.4.0-beta-24913-02",
- "System.Reflection": "4.4.0-beta-24913-02",
- "System.Reflection.Primitives": "4.4.0-beta-24913-02",
- "System.Reflection.Extensions": "4.4.0-beta-24913-02",
- "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02",
- "System.Resources.ResourceManager": "4.4.0-beta-24913-02",
- "System.Runtime": "4.4.0-beta-24913-02",
"System.Runtime.CompilerServices.Unsafe": "4.4.0-beta-24913-02",
- "System.Runtime.Extensions": "4.4.0-beta-24913-02",
- "System.Runtime.InteropServices": "4.4.0-beta-24913-02",
- "System.Runtime.InteropServices.RuntimeInformation": "4.4.0-beta-24913-02",
- "System.Runtime.Handles": "4.4.0-beta-24913-02",
- "System.Runtime.Numerics": "4.4.0-beta-24913-02",
- "System.Security.Principal": "4.4.0-beta-24913-02",
- "System.Text.Encoding": "4.4.0-beta-24913-02",
- "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02",
- "System.Threading": "4.4.0-beta-24913-02",
- "System.Threading.Overlapped": "4.4.0-beta-24913-02",
- "System.Threading.Tasks": "4.4.0-beta-24913-02",
- "System.Threading.Thread": "4.4.0-beta-24913-02",
- "System.Threading.Timer": "4.4.0-beta-24913-02",
- "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02",
"runtime.native.System": "4.4.0-beta-24913-02"
}
diff --git a/src/packaging/packages.targets b/src/packaging/packages.targets
index 7b848c057..f362e52cd 100644
--- a/src/packaging/packages.targets
+++ b/src/packaging/packages.targets
@@ -23,9 +23,10 @@
<StaticLibExt Condition="'$(OsEnvironment)'!='Windows_NT'">a</StaticLibExt>
<CoreFxPackageVersion>4.4.0-beta-24913-02</CoreFxPackageVersion>
+ <NetCoreAppPackageVersion>2.0.0-beta-001368-00</NetCoreAppPackageVersion>
<JitPackageVersion>1.2.0-beta-24911-02</JitPackageVersion>
-
+
<ObjectWriterPackageVersion>1.0.13-prerelease-00001</ObjectWriterPackageVersion>
<ObjectWriterNuPkgRid Condition="'$(OSGroup)'=='Linux'">ubuntu.14.04-x64</ObjectWriterNuPkgRid>
<ObjectWriterNuPkgRid Condition="'$(ObjectWriterNuPkgRid)'==''">$(NuPkgRid)</ObjectWriterNuPkgRid>
@@ -112,21 +113,35 @@
<!-- Repackage the CoreCLR framework -->
<!-- TODO: Obtain this via nuget once the framework is properly packaged -->
+ <ILCompilerAnyFrameworkFiles Include="Microsoft.Win32.Primitives" />
+ <ILCompilerAnyFrameworkFiles Include="mscorlib" />
+ <ILCompilerAnyFrameworkFiles Include="System.Buffers" />
+ <ILCompilerAnyFrameworkFiles Include="System.Collections.Concurrent" />
+ <ILCompilerAnyFrameworkFiles Include="System.Collections.NonGeneric" />
+ <ILCompilerAnyFrameworkFiles Include="System.Console" />
+ <ILCompilerAnyFrameworkFiles Include="System.Diagnostics.Tools" />
<ILCompilerAnyFrameworkFiles Include="System.Globalization" />
<ILCompilerAnyFrameworkFiles Include="System.Globalization.Calendars" />
<ILCompilerAnyFrameworkFiles Include="System.IO" />
+ <ILCompilerAnyFrameworkFiles Include="System.IO.FileSystem" />
+ <ILCompilerAnyFrameworkFiles Include="System.IO.FileSystem.Primitives" />
<ILCompilerAnyFrameworkFiles Include="System.Reflection" />
+ <ILCompilerAnyFrameworkFiles Include="System.Reflection.Extensions" />
+ <ILCompilerAnyFrameworkFiles Include="System.Reflection.TypeExtensions" />
<ILCompilerAnyFrameworkFiles Include="System.Resources.ResourceManager" />
<ILCompilerAnyFrameworkFiles Include="System.Runtime.Handles" />
- <ILCompilerAnyFrameworkFiles Include="System.Diagnostics.Tools" />
+ <ILCompilerAnyFrameworkFiles Include="System.Runtime.InteropServices.RuntimeInformation" />
+ <ILCompilerAnyFrameworkFiles Include="System.Runtime.Numerics" />
+ <ILCompilerAnyFrameworkFiles Include="System.Security.Principal" />
<ILCompilerAnyFrameworkFiles Include="System.Text.Encoding" />
<ILCompilerAnyFrameworkFiles Include="System.Text.Encoding.Extensions" />
+ <ILCompilerAnyFrameworkFiles Include="System.Threading.Overlapped" />
+ <ILCompilerAnyFrameworkFiles Include="System.Threading.Thread" />
<ILCompilerAnyFrameworkFiles Include="System.Threading.Timer" />
<ILCompilerSdkBinPlace Include="@(ILCompilerAnyFrameworkFiles)">
- <Text><![CDATA[ <file src="packages/runtime.any.%(Identity)/$(CoreFxPackageVersion)/lib/netstandard1.7/%(Identity).dll" target="runtimes/$(NuPkgRid)/native/framework/%(Identity).dll" /> ]]></Text>
+ <Text><![CDATA[ <file src="packages/runtime.$(NuPkgRid).Microsoft.NETCore.App/$(NetCoreAppPackageVersion)/runtimes/$(NuPkgRid)/lib/netcoreapp2.0/%(Identity).dll" target="runtimes/$(NuPkgRid)/native/framework/%(Identity).dll" /> ]]></Text>
</ILCompilerSdkBinPlace>
-
<!-- Libraries with netcoreapp1.2corert configuration -->
<ILCompilerFrameworkFiles Include="runtime.win7.System.Private.Uri/$(CoreFxPackageVersion)/runtimes/win-corert/lib/netcoreapp1.2/System.Private.Uri.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
<ILCompilerFrameworkFiles Include="runtime.unix.System.Private.Uri/$(CoreFxPackageVersion)/runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
@@ -148,32 +163,7 @@
<ILCompilerFrameworkFiles Include="System.Linq/$(CoreFxPackageVersion)/lib/netcore50/System.Linq.dll" />
- <ILCompilerFrameworkFiles Include="Microsoft.NETCore.Portable.Compatibility/1.0.2/runtimes/aot/lib/netcore50/mscorlib.dll" />
-
-
- <ILCompilerFrameworkFiles Include="runtime.win.System.Console/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.7/System.Console.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="runtime.unix.System.Console/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.7/System.Console.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="runtime.win.Microsoft.Win32.Primitives/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.7/Microsoft.Win32.Primitives.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="runtime.unix.Microsoft.Win32.Primitives/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="runtime.win.System.IO.FileSystem/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.7/System.IO.FileSystem.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="runtime.unix.System.IO.FileSystem/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
-
- <ILCompilerFrameworkFiles Include="System.Threading.Overlapped/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.7/System.Threading.Overlapped.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="System.Threading.Overlapped/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.7/System.Threading.Overlapped.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="System.Threading.Thread/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="System.Threading.Thread/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll" Condition="'$(OsEnvironment)'!='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="System.Runtime.InteropServices.RuntimeInformation/$(CoreFxPackageVersion)/runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
- <ILCompilerFrameworkFiles Include="System.Runtime.InteropServices.RuntimeInformation/$(CoreFxPackageVersion)/runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll" Condition="'$(OsEnvironment)'=='Windows_NT'" />
-
- <ILCompilerFrameworkFiles Include="System.Buffers/$(CoreFxPackageVersion)/lib/netcoreapp1.1/System.Buffers.dll" />
- <ILCompilerFrameworkFiles Include="System.Collections.Concurrent/$(CoreFxPackageVersion)/lib/netstandard1.7/System.Collections.Concurrent.dll" />
- <ILCompilerFrameworkFiles Include="System.Collections.NonGeneric/$(CoreFxPackageVersion)/lib/netstandard1.7/System.Collections.NonGeneric.dll" />
- <ILCompilerFrameworkFiles Include="System.IO.FileSystem.Primitives/$(CoreFxPackageVersion)/lib/netstandard1.7/System.IO.FileSystem.Primitives.dll" />
- <ILCompilerFrameworkFiles Include="System.Reflection.Extensions/$(CoreFxPackageVersion)/lib/netstandard1.7/System.Reflection.Extensions.dll" />
- <ILCompilerFrameworkFiles Include="System.Reflection.TypeExtensions/$(CoreFxPackageVersion)/lib/netstandard1.5/System.Reflection.TypeExtensions.dll" />
<ILCompilerFrameworkFiles Include="System.Runtime.CompilerServices.Unsafe/$(CoreFxPackageVersion)/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll" />
- <ILCompilerFrameworkFiles Include="System.Runtime.Numerics/$(CoreFxPackageVersion)/lib/netstandard1.7/System.Runtime.Numerics.dll" />
- <ILCompilerFrameworkFiles Include="System.Security.Principal/$(CoreFxPackageVersion)/lib/netstandard1.7/System.Security.Principal.dll" />
<ILCompilerFrameworkFiles Include="runtime.$(NuPkgRid).runtime.native.System/$(CoreFxPackageVersion)/runtimes/$(NuPkgRid)/native/System.Native.a" Condition="'$(OsEnvironment)'!='Windows_NT'" />
diff --git a/src/packaging/uap/project.json b/src/packaging/uap/project.json
index b8ea32560..b92a42b19 100644
--- a/src/packaging/uap/project.json
+++ b/src/packaging/uap/project.json
@@ -2,9 +2,7 @@
"frameworks": {
"uap10.1": {
"dependencies": {
- "System.Diagnostics.Tracing": "4.4.0-beta-24913-02",
- "System.Linq": "4.4.0-beta-24913-02",
- "Microsoft.NETCore.Portable.Compatibility": "1.0.2"
+ "System.Diagnostics.Tracing": "4.4.0-beta-24913-02"
}
}
},