Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 61466af

Browse files
committed
Renaming Microsoft.Framework.* -> Microsoft.Extensions.*
1 parent 3cb50b9 commit 61466af

File tree

102 files changed

+134
-134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+134
-134
lines changed

HttpAbstractions.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
44
VisualStudioVersion = 14.0.23107.0
@@ -35,11 +35,11 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Net.Http.Headers"
3535
EndProject
3636
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Net.Http.Headers.Tests", "test\Microsoft.Net.Http.Headers.Tests\Microsoft.Net.Http.Headers.Tests.xproj", "{E6BB7AD1-BD10-4A23-B780-F4A86ADF00D1}"
3737
EndProject
38-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders", "src\Microsoft.Framework.WebEncoders\Microsoft.Framework.WebEncoders.xproj", "{DD2CE416-765E-4000-A03E-C2FF165DA1B6}"
38+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders", "src\Microsoft.Extensions.WebEncoders\Microsoft.Extensions.WebEncoders.xproj", "{DD2CE416-765E-4000-A03E-C2FF165DA1B6}"
3939
EndProject
40-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders.Tests", "test\Microsoft.Framework.WebEncoders.Tests\Microsoft.Framework.WebEncoders.Tests.xproj", "{7AE2731D-43CD-4CF8-850A-4914DE2CE930}"
40+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders.Tests", "test\Microsoft.Extensions.WebEncoders.Tests\Microsoft.Extensions.WebEncoders.Tests.xproj", "{7AE2731D-43CD-4CF8-850A-4914DE2CE930}"
4141
EndProject
42-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.WebEncoders.Core", "src\Microsoft.Framework.WebEncoders.Core\Microsoft.Framework.WebEncoders.Core.xproj", "{BE9112CB-D87D-4080-9CC3-24492D49CBE6}"
42+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.WebEncoders.Core", "src\Microsoft.Extensions.WebEncoders.Core\Microsoft.Extensions.WebEncoders.Core.xproj", "{BE9112CB-D87D-4080-9CC3-24492D49CBE6}"
4343
EndProject
4444
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Html.Abstractions", "src\Microsoft.AspNet.Html.Abstractions\Microsoft.AspNet.Html.Abstractions.xproj", "{68A28E4A-3ADE-4187-9625-4FF185887CB3}"
4545
EndProject
@@ -49,9 +49,9 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SampleApp", "samples\Sample
4949
EndProject
5050
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Html.Abstractions.Test", "test\Microsoft.AspNet.Html.Abstractions.Test\Microsoft.AspNet.Html.Abstractions.Test.xproj", "{2D187B88-94BD-4A39-AC97-F8F8B9363301}"
5151
EndProject
52-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.BufferedHtmlContent.Sources", "src\Microsoft.Framework.BufferedHtmlContent.Sources\Microsoft.Framework.BufferedHtmlContent.Sources.xproj", "{B1B2B906-24AE-4C57-AAC5-19B734014504}"
52+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.BufferedHtmlContent.Sources", "src\Microsoft.Extensions.BufferedHtmlContent.Sources\Microsoft.Extensions.BufferedHtmlContent.Sources.xproj", "{B1B2B906-24AE-4C57-AAC5-19B734014504}"
5353
EndProject
54-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.BufferedHtmlContent.Test", "test\Microsoft.Framework.BufferedHtmlContent.Test\Microsoft.Framework.BufferedHtmlContent.Test.xproj", "{3E5311E2-A73E-40CC-A58C-5A62CEAD43AE}"
54+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.BufferedHtmlContent.Test", "test\Microsoft.Extensions.BufferedHtmlContent.Test\Microsoft.Extensions.BufferedHtmlContent.Test.xproj", "{3E5311E2-A73E-40CC-A58C-5A62CEAD43AE}"
5555
EndProject
5656
Global
5757
GlobalSection(SolutionConfigurationPlatforms) = preSolution

NuGetPackageVerifier.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"Microsoft.AspNet.Http.Features": { },
1717
"Microsoft.AspNet.Owin": { },
1818
"Microsoft.AspNet.WebUtilities": { },
19-
"Microsoft.Framework.BufferedHtmlContent.Sources": { },
20-
"Microsoft.Framework.WebEncoders": { },
21-
"Microsoft.Framework.WebEncoders.Core": { },
19+
"Microsoft.Extensions.BufferedHtmlContent.Sources": { },
20+
"Microsoft.Extensions.WebEncoders": { },
21+
"Microsoft.Extensions.WebEncoders.Core": { },
2222
"Microsoft.Net.Http.Headers": { }
2323
}
2424
},

samples/SampleApp/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using System;
1+
using System;
22
using System.Diagnostics;
3-
using Microsoft.Framework.Primitives;
3+
using Microsoft.Extensions.Primitives;
44

55
namespace SampleApp
66
{

src/Microsoft.AspNet.Html.Abstractions/HtmlContentBuilderExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
55
using System.Diagnostics;
66
using System.Globalization;
77
using System.IO;
88
using System.Text;
9-
using Microsoft.Framework.WebEncoders;
9+
using Microsoft.Extensions.WebEncoders;
1010

1111
namespace Microsoft.AspNet.Html.Abstractions
1212
{

src/Microsoft.AspNet.Html.Abstractions/IHtmlContent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.IO;
5-
using Microsoft.Framework.WebEncoders;
5+
using Microsoft.Extensions.WebEncoders;
66

77
namespace Microsoft.AspNet.Html.Abstractions
88
{

src/Microsoft.AspNet.Html.Abstractions/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"version": "1.0.0-*",
33
"description": "ASP.NET 5 HTML content interface.",
44
"repository": {
@@ -9,7 +9,7 @@
99
"warningsAsErrors": true
1010
},
1111
"dependencies": {
12-
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
12+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
1313
},
1414
"frameworks": {
1515
"net45" : { },

src/Microsoft.AspNet.Http.Abstractions/Extensions/UseMiddlewareExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Threading.Tasks;
88
using Microsoft.AspNet.Http;
99
using Microsoft.AspNet.Http.Abstractions;
10-
using Microsoft.Framework.Internal;
10+
using Microsoft.Extensions.Internal;
1111

1212
namespace Microsoft.AspNet.Builder
1313
{

src/Microsoft.AspNet.Http.Abstractions/IHeaderDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections.Generic;
5-
using Microsoft.Framework.Primitives;
5+
using Microsoft.Extensions.Primitives;
66

77
namespace Microsoft.AspNet.Http
88
{

src/Microsoft.AspNet.Http.Abstractions/IReadableStringCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections.Generic;
5-
using Microsoft.Framework.Primitives;
5+
using Microsoft.Extensions.Primitives;
66

77
namespace Microsoft.AspNet.Http
88
{

src/Microsoft.AspNet.Http.Abstractions/PathString.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Linq;
6-
using Microsoft.Framework.WebEncoders;
6+
using Microsoft.Extensions.WebEncoders;
77

88
namespace Microsoft.AspNet.Http
99
{

src/Microsoft.AspNet.Http.Abstractions/QueryString.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Text;
7-
using Microsoft.Framework.Primitives;
8-
using Microsoft.Framework.WebEncoders;
7+
using Microsoft.Extensions.Primitives;
8+
using Microsoft.Extensions.WebEncoders;
99

1010
namespace Microsoft.AspNet.Http
1111
{

src/Microsoft.AspNet.Http.Abstractions/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
},
1111
"dependencies": {
1212
"Microsoft.AspNet.Http.Features": "1.0.0-*",
13-
"Microsoft.Framework.ActivatorUtilities.Sources": { "type": "build", "version": "1.0.0-*" },
14-
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*"
13+
"Microsoft.Extensions.ActivatorUtilities.Sources": { "type": "build", "version": "1.0.0-*" },
14+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
1515
},
1616
"frameworks": {
1717
"dnx451": { },

src/Microsoft.AspNet.Http.Extensions/HeaderDictionaryExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using Microsoft.AspNet.Http.Internal;
5-
using Microsoft.Framework.Primitives;
5+
using Microsoft.Extensions.Primitives;
66

77
namespace Microsoft.AspNet.Http
88
{

src/Microsoft.AspNet.Http.Extensions/HeaderDictionaryTypeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Linq;
77
using System.Reflection;
88
using Microsoft.AspNet.Http.Headers;
9-
using Microsoft.Framework.Primitives;
9+
using Microsoft.Extensions.Primitives;
1010
using Microsoft.Net.Http.Headers;
1111

1212
namespace Microsoft.AspNet.Http

src/Microsoft.AspNet.Http.Extensions/Internal/HeaderSegmentCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections;
33
using System.Collections.Generic;
4-
using Microsoft.Framework.Primitives;
4+
using Microsoft.Extensions.Primitives;
55

66
namespace Microsoft.AspNet.Http.Internal
77
{

src/Microsoft.AspNet.Http.Extensions/Internal/ParsingHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Http.Internal
1010
{

src/Microsoft.AspNet.Http.Extensions/QueryBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections;
55
using System.Collections.Generic;
66
using System.Text;
7-
using Microsoft.Framework.WebEncoders;
7+
using Microsoft.Extensions.WebEncoders;
88

99
namespace Microsoft.AspNet.Http.Extensions
1010
{

src/Microsoft.AspNet.Http.Extensions/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
13-
"Microsoft.Framework.WebEncoders.Core": "1.0.0-*",
13+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*",
1414
"Microsoft.Net.Http.Headers": "1.0.0-*"
1515
},
1616
"frameworks": {

src/Microsoft.AspNet.Http.Features/IHttpRequestFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55
using System.IO;
6-
using Microsoft.Framework.Primitives;
6+
using Microsoft.Extensions.Primitives;
77

88
namespace Microsoft.AspNet.Http.Features
99
{

src/Microsoft.AspNet.Http.Features/IHttpResponseFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.IO;
77
using System.Threading.Tasks;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.Http.Features
1111
{

src/Microsoft.AspNet.Http.Features/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"warningsAsErrors": true
1010
},
1111
"dependencies": {
12-
"Microsoft.Framework.Primitives": "1.0.0-*"
12+
"Microsoft.Extensions.Primitives": "1.0.0-*"
1313
},
1414
"frameworks": {
1515
"dnx451": { },

src/Microsoft.AspNet.Http/Features/FormFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Threading.Tasks;
1010
using Microsoft.AspNet.Http.Internal;
1111
using Microsoft.AspNet.WebUtilities;
12-
using Microsoft.Framework.Primitives;
12+
using Microsoft.Extensions.Primitives;
1313
using Microsoft.Net.Http.Headers;
1414

1515
namespace Microsoft.AspNet.Http.Features.Internal

src/Microsoft.AspNet.Http/Features/HttpRequestFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.IO;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Http.Features.Internal
1010
{

src/Microsoft.AspNet.Http/Features/HttpResponseFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.IO;
77
using System.Threading.Tasks;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.Http.Features.Internal
1111
{

src/Microsoft.AspNet.Http/Features/QueryFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using Microsoft.AspNet.Http.Internal;
77
using Microsoft.AspNet.WebUtilities;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99

1010
namespace Microsoft.AspNet.Http.Features.Internal
1111
{

src/Microsoft.AspNet.Http/Features/RequestCookiesFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Linq;
77
using Microsoft.AspNet.Http.Internal;
8-
using Microsoft.Framework.Primitives;
8+
using Microsoft.Extensions.Primitives;
99
using Microsoft.Net.Http.Headers;
1010

1111
namespace Microsoft.AspNet.Http.Features.Internal

src/Microsoft.AspNet.Http/FormCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.Primitives;
6+
using Microsoft.Extensions.Primitives;
77

88
namespace Microsoft.AspNet.Http.Internal
99
{

src/Microsoft.AspNet.Http/HeaderDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections;
66
using System.Collections.Generic;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Http.Internal
1010
{

src/Microsoft.AspNet.Http/ParsingHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Collections.Generic;
77
using System.Globalization;
88
using System.Linq;
9-
using Microsoft.Framework.Primitives;
9+
using Microsoft.Extensions.Primitives;
1010
using Microsoft.Net.Http.Headers;
1111

1212
namespace Microsoft.AspNet.Http.Internal

src/Microsoft.AspNet.Http/ReadableStringCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections;
66
using System.Collections.Generic;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Http.Internal
1010
{

src/Microsoft.AspNet.Http/RequestCookiesCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections;
66
using System.Collections.Generic;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88
using Microsoft.Net.Http.Headers;
99

1010
namespace Microsoft.AspNet.Http.Internal

src/Microsoft.AspNet.Http/ResponseCookies.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
using System;
55
using System.Linq;
6-
using Microsoft.Framework.Primitives;
7-
using Microsoft.Framework.WebEncoders;
6+
using Microsoft.Extensions.Primitives;
7+
using Microsoft.Extensions.WebEncoders;
88
using Microsoft.Net.Http.Headers;
99

1010
namespace Microsoft.AspNet.Http.Internal

src/Microsoft.AspNet.Owin/DictionaryStringArrayWrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Owin
1010
{

src/Microsoft.AspNet.Owin/DictionaryStringValuesWrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using Microsoft.Framework.Primitives;
7+
using Microsoft.Extensions.Primitives;
88

99
namespace Microsoft.AspNet.Owin
1010
{

src/Microsoft.AspNet.Owin/OwinFeatureCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using Microsoft.AspNet.Http;
1818
using Microsoft.AspNet.Http.Features;
1919
using Microsoft.AspNet.Http.Features.Authentication;
20-
using Microsoft.Framework.Primitives;
20+
using Microsoft.Extensions.Primitives;
2121

2222
namespace Microsoft.AspNet.Owin
2323
{

src/Microsoft.AspNet.Owin/Utilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Security.Claims;
77
using System.Security.Principal;
88
using Microsoft.AspNet.Http;
9-
using Microsoft.Framework.Primitives;
9+
using Microsoft.Extensions.Primitives;
1010

1111
namespace Microsoft.AspNet.Owin
1212
{

src/Microsoft.AspNet.WebUtilities/FormReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Text;
88
using System.Threading;
99
using System.Threading.Tasks;
10-
using Microsoft.Framework.Primitives;
10+
using Microsoft.Extensions.Primitives;
1111

1212
namespace Microsoft.AspNet.WebUtilities
1313
{

src/Microsoft.AspNet.WebUtilities/KeyValueAccumulator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6-
using Microsoft.Framework.Primitives;
6+
using Microsoft.Extensions.Primitives;
77

88
namespace Microsoft.AspNet.WebUtilities
99
{

0 commit comments

Comments
 (0)