Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ili committed Aug 30, 2017
2 parents 135812d + 7037cfa commit 14c67dd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json'

environment:
nugetVersion: 1.2.0
nugetVersion: 1.2.1

version: $(nugetVersion).{build}

Expand Down
4 changes: 0 additions & 4 deletions samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
<Compile Remove=".\Data\Migrations\*.cs" />
</ItemGroup>

<ItemGroup>
<Compile Include="Models\AccountViewModels\ExternalLoginConfirmationViewModel.cs" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\LinqToDB.Identity\LinqToDB.Identity.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,4 @@

namespace IdentitySample.Models.AccountViewModels
{
public class ExternalLoginConfirmationViewModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

namespace IdentitySample.Models.AccountViewModels
{
public class ExternalLoginConfirmationViewModel
{
[Required]
[EmailAddress]
public string Email { get; set; }
}

public class ForgotPasswordViewModel
{
[Required]
Expand Down
2 changes: 1 addition & 1 deletion src/LinqToDB.Identity/LinqToDB.Identity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="1.1.2" />
<PackageReference Include="linq2db.core" Version="1.8.3" />
<PackageReference Include="linq2db.core" Version="1.9.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
</ItemGroup>

Expand Down

0 comments on commit 14c67dd

Please sign in to comment.