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:
authorJose Perez Rodriguez <joperezr@microsoft.com>2016-09-30 20:16:13 +0300
committerJose Perez Rodriguez <joperezr@microsoft.com>2016-10-01 21:08:50 +0300
commitd56046ba2a740409006dfe94f1043c5f32a0339d (patch)
treeb96756db0147b57f2f17df1123af81f84e51feeb /src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
parent7a9f172bfe047bc90c88b87cfb7c3f04a0086de9 (diff)
Changing test projects to default to netcoreapp1.1 instead of netcoreapp1.0
Diffstat (limited to 'src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj')
-rw-r--r--src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj b/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
index 5e23c96803..2e87b9ad0a 100644
--- a/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
+++ b/src/System.Collections.NonGeneric/tests/System.Collections.NonGeneric.Tests.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-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" />
<PropertyGroup>
@@ -8,8 +8,8 @@
<RootNamespace>System.Collections.NonGeneric.Tests</RootNamespace>
<AssemblyName>System.Collections.NonGeneric.Tests</AssemblyName>
<ProjectGuid>{EE95AE39-845A-42D3-86D0-8065DBE56612}</ProjectGuid>
- <DefineConstants Condition="'$(TargetGroup)'=='netstandard1.7'">$(DefineConstants);netstandard17</DefineConstants>
- <NugetTargetMoniker Condition="'$(NugetTargetMoniker)'==''">.NETStandard,Version=v1.3</NugetTargetMoniker>
+ <DefineConstants Condition="'$(TargetGroup)'==''">$(DefineConstants);netstandard17</DefineConstants>
+ <NugetTargetMoniker Condition="'$(TargetGroup)' == ''">.NETStandard,Version=v1.7</NugetTargetMoniker>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -38,7 +38,6 @@
</Compile>
<Compile Include="ArrayListTests.cs" />
<Compile Include="ArrayList\ArrayList.IList.Tests.cs" />
- <Compile Include="CaseInsensitiveHashCodeProviderTests.cs" Condition="'$(TargetGroup)'=='netstandard1.7'" />
<Compile Include="Hashtable\Hashtable.Values.Tests.cs" />
<Compile Include="Hashtable\Hashtable.Keys.Tests.cs" />
<Compile Include="Hashtable\Hashtable.IDictionary.Tests.cs" />
@@ -57,13 +56,14 @@
<Link>Common\System\Diagnostics\DebuggerAttributes.cs</Link>
</Compile>
</ItemGroup>
- <ItemGroup Condition="'$(TargetGroup)'!='netstandard1.7'">
+ <ItemGroup Condition="'$(TargetGroup)'!=''">
<Compile Include="$(CommonPath)\System\SerializableAttribute.cs">
<Link>Common\System\SerializableAttribute.cs</Link>
</Compile>
</ItemGroup>
- <ItemGroup Condition="'$(TargetGroup)'=='netstandard1.7'">
- <Compile Include="$(CommonTestPath)\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs" >
+ <ItemGroup Condition="'$(TargetGroup)'==''">
+ <Compile Include="CaseInsensitiveHashCodeProviderTests.cs" />
+ <Compile Include="$(CommonTestPath)\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs">
<Link>Common\System\Collections\IEnumerable.NonGeneric.Serialization.Tests.cs</Link>
</Compile>
</ItemGroup>