React to HttpAbstractions namespace changes

- aspnet/HttpAbstractions#549 and aspnet/HttpAbstractions#592
- clean up `using`s
This commit is contained in:
Doug Bunting 2016-03-22 11:17:28 -07:00
Родитель 7f4a772859
Коммит fd866f03c2
8 изменённых файлов: 8 добавлений и 14 удалений

Просмотреть файл

@ -4,6 +4,7 @@ using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.WebUtilities;
using MusicStore.Mocks.Common;
@ -54,5 +55,5 @@ namespace MusicStore.Mocks.Facebook
throw new NotImplementedException(request.RequestUri.AbsoluteUri);
}
}
}
}
#endif

Просмотреть файл

@ -5,7 +5,7 @@ using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.WebUtilities;
namespace MusicStore.Mocks.Google
@ -53,5 +53,5 @@ namespace MusicStore.Mocks.Google
throw new NotImplementedException(request.RequestUri.AbsoluteUri);
}
}
}
}
#endif

Просмотреть файл

@ -5,7 +5,7 @@ using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.WebUtilities;
namespace MusicStore.Mocks.MicrosoftAccount
@ -54,5 +54,5 @@ namespace MusicStore.Mocks.MicrosoftAccount
throw new NotImplementedException(request.RequestUri.AbsoluteUri);
}
}
}
}
#endif

Просмотреть файл

@ -5,7 +5,7 @@ using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.WebUtilities;
namespace MusicStore.Mocks.Twitter
@ -65,5 +65,5 @@ namespace MusicStore.Mocks.Twitter
throw new NotImplementedException(request.RequestUri.AbsoluteUri);
}
}
}
}
#endif

Просмотреть файл

@ -2,7 +2,6 @@ using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewComponents;
using Microsoft.EntityFrameworkCore;

Просмотреть файл

@ -5,7 +5,6 @@ using System.Security.Claims;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;

Просмотреть файл

@ -3,10 +3,7 @@ using System.Collections.Generic;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Http.Features.Authentication;
using Microsoft.AspNetCore.Http.Features.Authentication.Internal;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.AspNetCore.Mvc;

Просмотреть файл

@ -6,8 +6,6 @@ using System.Threading.Tasks;
using Microsoft.AspNetCore.Antiforgery;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.AspNetCore.Http.Features.Internal;
using Microsoft.AspNetCore.Http.Internal;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;