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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2016-04-09 02:08:18 +0300
committerEric St. John <ericstj@microsoft.com>2016-04-09 02:23:35 +0300
commit0a04be98211d540d9b484526137e86062ddf8a32 (patch)
tree3eb1224f1446a36ba6999bd880c307930f5dd05b /pkg/Microsoft.NETCore.Targets
parentdf30ced35236d603284efcb164f132b657fb6b08 (diff)
Add NETStandard.Library to CoreFx
Diffstat (limited to 'pkg/Microsoft.NETCore.Targets')
-rw-r--r--pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.builds8
-rw-r--r--pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.pkgproj27
-rw-r--r--pkg/Microsoft.NETCore.Targets/runtime.json27
3 files changed, 62 insertions, 0 deletions
diff --git a/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.builds b/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.builds
new file mode 100644
index 0000000000..d7b3561eac
--- /dev/null
+++ b/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.builds
@@ -0,0 +1,8 @@
+<?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" />
+ <ItemGroup>
+ <Project Include="Microsoft.NETCore.Targets.pkgproj"/>
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
+</Project> \ No newline at end of file
diff --git a/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.pkgproj b/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.pkgproj
new file mode 100644
index 0000000000..0d8637bdec
--- /dev/null
+++ b/pkg/Microsoft.NETCore.Targets/Microsoft.NETCore.Targets.pkgproj
@@ -0,0 +1,27 @@
+<?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>
+ <IsLineupPackage>true</IsLineupPackage>
+ <RuntimeFileSource>runtime.json</RuntimeFileSource>
+ </PropertyGroup>
+
+ <Import Project="..\NETStandard.Library\NETStandard.Library.packages.targets" />
+
+ <ItemGroup>
+ <Package Include="System.Private.Uri" />
+ <NativePackage Include="runtime.native.System.IO.Compression" />
+ <NativePackage Include="runtime.native.System" />
+ <NativePackage Include="runtime.native.System.Net.Http" />
+ <NativePackage Include="runtime.native.System.Security.Cryptography" />
+ <NativePackage Include="runtime.native.System.Net.Security" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <LineupProjectReference Include="@(Package->'$(SourceDir)%(Identity)/pkg/%(Identity).pkgproj')" />
+ <LineupProjectReference Include="@(NativePackage->'$(SourceDir)Native/pkg/%(Identity)/%(Identity).pkgproj')" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project> \ No newline at end of file
diff --git a/pkg/Microsoft.NETCore.Targets/runtime.json b/pkg/Microsoft.NETCore.Targets/runtime.json
new file mode 100644
index 0000000000..79276e7b8e
--- /dev/null
+++ b/pkg/Microsoft.NETCore.Targets/runtime.json
@@ -0,0 +1,27 @@
+{
+ "supports": {
+ "uwp.10.0.app": {
+ "uap10.0": [
+ "win10-x86",
+ "win10-x86-aot",
+ "win10-x64",
+ "win10-x64-aot",
+ "win10-arm",
+ "win10-arm-aot"
+ ]
+ },
+ "net46.app": {
+ "net46": [
+ "win-x86",
+ "win-x64"
+ ]
+ },
+ "dnxcore50.app": {
+ "dnxcore50": [
+ "win7-x86",
+ "win7-x64"
+ ]
+ }
+ }
+ }
+