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

Commit 7aa2bcc

Browse files
committed
Move remaining feature interfaces into Microsoft.AspNetCore.Http.Features package and namespace
- related to #561 - move required interfaces and classes down from `Microsoft.AspNetCore.Http.Abstractions` - move everything in the `Microsoft.AspNetCore.Http.Features` into their own directory nit: remove transient dependencies listed in `Microsoft.AspNetCore.Http.Abstractions`'s `project.json`
1 parent ce408a9 commit 7aa2bcc

33 files changed

+19
-20
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,10 @@
2929
},
3030
"netstandard1.3": {
3131
"dependencies": {
32-
"System.ComponentModel": "4.0.1-*",
3332
"System.Globalization.Extensions": "4.0.1-*",
3433
"System.Linq.Expressions": "4.0.11-*",
35-
"System.Net.WebSockets": "4.0.0-*",
3634
"System.Reflection.TypeExtensions": "4.1.0-*",
37-
"System.Runtime.InteropServices": "4.1.0-*",
38-
"System.Security.Cryptography.X509Certificates": "4.0.0-*"
35+
"System.Runtime.InteropServices": "4.1.0-*"
3936
},
4037
"imports": [
4138
"dotnet5.4"

src/Microsoft.AspNetCore.Http/Features/IFormFeature.cs renamed to src/Microsoft.AspNetCore.Http.Features/Features/IFormFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using System.Threading.Tasks;
66

7-
namespace Microsoft.AspNetCore.Http.Features.Internal
7+
namespace Microsoft.AspNetCore.Http.Features
88
{
99
public interface IFormFeature
1010
{

0 commit comments

Comments
 (0)