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 StJohn <ericstj@microsoft.com>2016-11-02 01:47:31 +0300
committerGitHub <noreply@github.com>2016-11-02 01:47:31 +0300
commit3bdd0ac8977cb19297f69fbeadee01dce7e2cc8e (patch)
tree36b95d3f24c039ceb54252503b2f9a32ec46efd6 /src/System.Runtime.Extensions/ref
parenta784f90eda23022303d1b4778c053b47594f60bf (diff)
parentcdaaefc0fb6c0e5d751edf89e30fefff09236bcf (diff)
Merge pull request #13199 from ericstj/defaultEmptyTargetGroupNETCoreApp
Default empty target group NETCoreApp
Diffstat (limited to 'src/System.Runtime.Extensions/ref')
-rw-r--r--src/System.Runtime.Extensions/ref/System.Runtime.Extensions.builds2
-rw-r--r--src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.builds b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.builds
index debce2464e..9034d82ac3 100644
--- a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.builds
+++ b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.builds
@@ -4,7 +4,7 @@
<ItemGroup>
<Project Include="System.Runtime.Extensions.csproj" />
<Project Include="System.Runtime.Extensions.csproj">
- <TargetGroup>netcoreapp1.1</TargetGroup>
+ <TargetGroup>netstandard1.7</TargetGroup>
</Project>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
diff --git a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
index 26c51af68a..4b55f5f4eb 100644
--- a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
+++ b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj
@@ -3,10 +3,10 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<OutputType>Library</OutputType>
- <NuGetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.7</NuGetTargetMoniker>
+ <NuGetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETCoreApp,Version=v1.1</NuGetTargetMoniker>
<!-- copy to uap10.1 until nuget makes the change to map that to ns1.7 -->
- <PackageTargetFramework Condition="'$(TargetGroup)' == ''">netstandard1.7;uap10.1</PackageTargetFramework>
- <DefineConstants Condition="'$(TargetGroup)' == 'netcoreapp1.1'">$(DefineConstants);netcoreapp11</DefineConstants>
+ <PackageTargetFramework Condition="'$(TargetGroup)' == 'netstandard1.7'">netstandard1.7;uap10.1</PackageTargetFramework>
+ <DefineConstants Condition="'$(TargetGroup)' == ''">$(DefineConstants);netcoreapp11</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Runtime.Extensions.cs" />