Fix namespace in RAZOR page _LoginPartial.cshtml, so nocompilation error when doing dotnet publish from CLI. Like D:\GITREPOS\eShopOnContainers-dev\src\Services\Identity\Identity.API\Views\Shared\_LoginPartial.cshtml(2,20): error CS0234: The type

or namespace name 'Models' does not exist in the namespace 'Identity.API' (are you missing an assembly reference?)
This commit is contained in:
Cesar De la Torre 2017-09-18 15:38:21 -07:00
parent 202e663f77
commit 14c3d69784
5 changed files with 61632 additions and 1 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,6 @@
@using Microsoft.AspNetCore.Identity
@using Identity.API.Models
@using Microsoft.eShopOnContainers.Services.Identity.API.Models
@inject SignInManager<ApplicationUser> SignInManager
@inject UserManager<ApplicationUser> UserManager