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:
authorchcosta <chcosta@microsoft.com>2016-12-20 02:23:37 +0300
committerWes Haggard <weshaggard@users.noreply.github.com>2016-12-20 02:23:37 +0300
commitfa7a54ad6d9c785a5d68cc7ade7b4995f04f7823 (patch)
tree1ed03441d73db9ffb7e8b548340876cad43fdd0e /src/System.Runtime.Extensions/ref
parent82e177d5652d41ccb8b7171d7e4d08bad8d88eac (diff)
Use netcoreapp and netstandard for targetgroups (#14616)
* Use netcoreapp and netstandard for targetgroups * Add configurations for some reference projects
Diffstat (limited to 'src/System.Runtime.Extensions/ref')
-rw-r--r--src/System.Runtime.Extensions/ref/Configurations.props9
-rw-r--r--src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj2
2 files changed, 10 insertions, 1 deletions
diff --git a/src/System.Runtime.Extensions/ref/Configurations.props b/src/System.Runtime.Extensions/ref/Configurations.props
new file mode 100644
index 0000000000..ea9ea79f78
--- /dev/null
+++ b/src/System.Runtime.Extensions/ref/Configurations.props
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <BuildConfigurations>
+ netcoreapp;
+ netstandard;
+ </BuildConfigurations>
+ </PropertyGroup>
+</Project>
diff --git a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
index c7895eef1b..4eb594ad36 100644
--- a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
+++ b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
@@ -2,7 +2,7 @@
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
- <DefineConstants Condition="'$(TargetGroup)' == 'netcoreapp1.1'">$(DefineConstants);netcoreapp11</DefineConstants>
+ <DefineConstants Condition="'$(TargetGroup)' == 'netcoreapp'">$(DefineConstants);netcoreapp11</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Runtime.Extensions.cs" />