Skip to content

Commit 14c67dd

Browse files
committed
Merge branch 'master' into release
2 parents 135812d + 7037cfa commit 14c67dd

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cache:
99
- '%USERPROFILE%\.nuget\packages -> **\project.json'
1010

1111
environment:
12-
nugetVersion: 1.2.0
12+
nugetVersion: 1.2.1
1313

1414
version: $(nugetVersion).{build}
1515

samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
<Compile Remove=".\Data\Migrations\*.cs" />
1717
</ItemGroup>
1818

19-
<ItemGroup>
20-
<Compile Include="Models\AccountViewModels\ExternalLoginConfirmationViewModel.cs" />
21-
</ItemGroup>
22-
2319
<ItemGroup>
2420
<ProjectReference Include="..\..\src\LinqToDB.Identity\LinqToDB.Identity.csproj" />
2521
</ItemGroup>

samples/IdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,4 @@
22

33
namespace IdentitySample.Models.AccountViewModels
44
{
5-
public class ExternalLoginConfirmationViewModel
6-
{
7-
[Required]
8-
[EmailAddress]
9-
public string Email { get; set; }
10-
}
115
}

samples/IdentitySample.Mvc/Models/AccountViewModels/ForgotPasswordViewModel.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
namespace IdentitySample.Models.AccountViewModels
44
{
5+
public class ExternalLoginConfirmationViewModel
6+
{
7+
[Required]
8+
[EmailAddress]
9+
public string Email { get; set; }
10+
}
11+
512
public class ForgotPasswordViewModel
613
{
714
[Required]

src/LinqToDB.Identity/LinqToDB.Identity.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<ItemGroup>
3434
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="1.1.2" />
35-
<PackageReference Include="linq2db.core" Version="1.8.3" />
35+
<PackageReference Include="linq2db.core" Version="1.9.0" />
3636
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
3737
</ItemGroup>
3838

0 commit comments

Comments
 (0)