* Fixing unit test broken by HttpAbstractions rename
* Adding stuff that kproj auto-added
This commit is contained in:
parent
28de88aa48
commit
c44d56a182
|
|
@ -22,12 +22,10 @@
|
|||
<ItemGroup>
|
||||
<Compile Include="EntityRole.cs" />
|
||||
<Compile Include="EntityUser.cs" />
|
||||
<Compile Include="IdentityBuilderExtensions.cs" />
|
||||
<Compile Include="IdentityContext.cs" />
|
||||
<Compile Include="RoleStore.cs" />
|
||||
<Compile Include="UserStore.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
||||
|
|
@ -20,11 +20,9 @@
|
|||
<Content Include="Project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="IdentityBuilderExtensions.cs" />
|
||||
<Compile Include="InMemoryRoleStore.cs" />
|
||||
<Compile Include="InMemoryUserStore.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
||||
|
|
@ -25,8 +25,5 @@
|
|||
<Compile Include="SignInManager.cs" />
|
||||
<Compile Include="SignInStatus.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
||||
|
|
@ -22,6 +22,7 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="ClaimsIdentityFactory.cs" />
|
||||
<Compile Include="ClaimTypeOptions.cs" />
|
||||
<Compile Include="Crypto.cs" />
|
||||
<Compile Include="IClaimsIdentityFactory.cs" />
|
||||
<Compile Include="IdentityBuilder.cs" />
|
||||
|
|
@ -31,7 +32,6 @@
|
|||
<Compile Include="IdentityRole.cs" />
|
||||
<Compile Include="IdentityServiceCollectionExtensions.cs" />
|
||||
<Compile Include="IdentityServices.cs" />
|
||||
<Compile Include="IdentitySetup.cs" />
|
||||
<Compile Include="IdentityUser.cs" />
|
||||
<Compile Include="IdentityUserClaim.cs" />
|
||||
<Compile Include="IdentityUserLogin.cs" />
|
||||
|
|
@ -55,7 +55,10 @@
|
|||
<Compile Include="IUserTokenProvider.cs" />
|
||||
<Compile Include="IUserTwoFactorStore.cs" />
|
||||
<Compile Include="IUserValidator.cs" />
|
||||
<Compile Include="LockoutOptions.cs" />
|
||||
<Compile Include="LockoutPolicy.cs" />
|
||||
<Compile Include="PasswordHasher.cs" />
|
||||
<Compile Include="PasswordOptions.cs" />
|
||||
<Compile Include="PasswordValidator.cs" />
|
||||
<Compile Include="PasswordVerificationResult.cs" />
|
||||
<Compile Include="Resources.Designer.cs" />
|
||||
|
|
@ -64,10 +67,8 @@
|
|||
<Compile Include="RoleValidator.cs" />
|
||||
<Compile Include="UserLoginInfo.cs" />
|
||||
<Compile Include="UserManager.cs" />
|
||||
<Compile Include="UserOptions.cs" />
|
||||
<Compile Include="UserValidator.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
||||
|
|
@ -23,11 +23,9 @@
|
|||
<ItemGroup>
|
||||
<Compile Include="IdentityResultAssert.cs" />
|
||||
<Compile Include="RoleStoreTest.cs" />
|
||||
<Compile Include="StartupTest.cs" />
|
||||
<Compile Include="TestIdentityFactory.cs" />
|
||||
<Compile Include="UserStoreTest.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\ProjectK\Microsoft.Web.ProjectK.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
||||
|
|
@ -15,9 +15,9 @@
|
|||
// See the Apache 2 License for the specific language governing
|
||||
// permissions and limitations under the License.
|
||||
|
||||
using Microsoft.AspNet.Abstractions;
|
||||
using Microsoft.AspNet.DependencyInjection;
|
||||
using Microsoft.AspNet.DependencyInjection.Fallback;
|
||||
using Microsoft.AspNet.Http;
|
||||
using Microsoft.AspNet.Identity.Test;
|
||||
using Microsoft.AspNet.PipelineCore;
|
||||
using System;
|
||||
|
|
|
|||
Loading…
Reference in New Issue