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.Net.WebHeaderCollection
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.Net.WebHeaderCollection')
-rw-r--r--src/System.Net.WebHeaderCollection/src/Configurations.props2
-rw-r--r--src/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Net.WebHeaderCollection/src/Configurations.props b/src/System.Net.WebHeaderCollection/src/Configurations.props
index 35e52f3e25..9c336c0be9 100644
--- a/src/System.Net.WebHeaderCollection/src/Configurations.props
+++ b/src/System.Net.WebHeaderCollection/src/Configurations.props
@@ -3,7 +3,7 @@
<PropertyGroup>
<BuildConfigurations>
net463-Windows_NT;
- netstandard1.7;
+ netstandard;
</BuildConfigurations>
</PropertyGroup>
</Project>
diff --git a/src/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj b/src/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj
index 2154a58378..9ec610b08e 100644
--- a/src/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj
+++ b/src/System.Net.WebHeaderCollection/src/System.Net.WebHeaderCollection.csproj
@@ -13,7 +13,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'net463_Release|AnyCPU'" />
- <ItemGroup Condition="'$(TargetGroup)' == 'netstandard1.7'">
+ <ItemGroup Condition="'$(TargetGroup)' == 'netstandard'">
<Compile Include="System\Net\WebHeaderCollection.cs" />
<Compile Include="System\Net\HttpResponseHeader.cs" />
<Compile Include="System\Net\HttpRequestHeader.cs" />