From fb1eed1c407b83da88e5934f768770170ee5efa3 Mon Sep 17 00:00:00 2001 From: Ilya Chudin Date: Wed, 30 Aug 2017 16:50:58 +0500 Subject: [PATCH 1/2] linq2db 1.9.0 version 1.2.1 --- appveyor.yml | 2 +- samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj | 4 ---- src/LinqToDB.Identity/LinqToDB.Identity.csproj | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2a9931848..3608111a8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ cache: - '%USERPROFILE%\.nuget\packages -> **\project.json' environment: - nugetVersion: 1.2.0 + nugetVersion: 1.2.1 version: $(nugetVersion).{build} diff --git a/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj b/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj index 7bfc545e8..e0e513f29 100644 --- a/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj +++ b/samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj @@ -16,10 +16,6 @@ - - - - diff --git a/src/LinqToDB.Identity/LinqToDB.Identity.csproj b/src/LinqToDB.Identity/LinqToDB.Identity.csproj index 3a970c25c..0b9714c5e 100644 --- a/src/LinqToDB.Identity/LinqToDB.Identity.csproj +++ b/src/LinqToDB.Identity/LinqToDB.Identity.csproj @@ -32,7 +32,7 @@ - + From 7037cfad20e23d3e1b750bd69024f713c6a79b91 Mon Sep 17 00:00:00 2001 From: Ilya Chudin Date: Wed, 30 Aug 2017 17:07:49 +0500 Subject: [PATCH 2/2] magic --- .../ExternalLoginConfirmationViewModel.cs | 6 ------ .../Models/AccountViewModels/ForgotPasswordViewModel.cs | 7 +++++++ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/samples/IdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs b/samples/IdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs index aabe12be7..52541fa89 100644 --- a/samples/IdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs +++ b/samples/IdentitySample.Mvc/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs @@ -2,10 +2,4 @@ namespace IdentitySample.Models.AccountViewModels { - public class ExternalLoginConfirmationViewModel - { - [Required] - [EmailAddress] - public string Email { get; set; } - } } \ No newline at end of file diff --git a/samples/IdentitySample.Mvc/Models/AccountViewModels/ForgotPasswordViewModel.cs b/samples/IdentitySample.Mvc/Models/AccountViewModels/ForgotPasswordViewModel.cs index f4d5193d2..742557f4b 100644 --- a/samples/IdentitySample.Mvc/Models/AccountViewModels/ForgotPasswordViewModel.cs +++ b/samples/IdentitySample.Mvc/Models/AccountViewModels/ForgotPasswordViewModel.cs @@ -2,6 +2,13 @@ namespace IdentitySample.Models.AccountViewModels { + public class ExternalLoginConfirmationViewModel + { + [Required] + [EmailAddress] + public string Email { get; set; } + } + public class ForgotPasswordViewModel { [Required]