Browse Source

Move the Mvc.Client/Mvc.Server projects to a new sandbox folder

pull/1386/head
Kévin Chalet 4 years ago
parent
commit
7c08434e08
  1. 6
      OpenIddict.sln
  2. 3
      samples/Mvc.Server/wwwroot/_references.js
  3. 0
      sandbox/Mvc.Client/Controllers/AuthenticationController.cs
  4. 0
      sandbox/Mvc.Client/Controllers/HomeController.cs
  5. 0
      sandbox/Mvc.Client/Mvc.Client.csproj
  6. 0
      sandbox/Mvc.Client/Program.cs
  7. 0
      sandbox/Mvc.Client/Properties/launchSettings.json
  8. 0
      sandbox/Mvc.Client/Startup.cs
  9. 0
      sandbox/Mvc.Client/Views/Shared/Home.cshtml
  10. 0
      sandbox/Mvc.Client/Views/Shared/_Layout.cshtml
  11. 0
      sandbox/Mvc.Client/Views/_ViewStart.cshtml
  12. 0
      sandbox/Mvc.Client/appsettings.Development.json
  13. 0
      sandbox/Mvc.Client/appsettings.json
  14. 0
      sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.eot
  15. 0
      sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.svg
  16. 0
      sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.ttf
  17. 0
      sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.woff
  18. 0
      sandbox/Mvc.Client/wwwroot/scripts/bootstrap.js
  19. 0
      sandbox/Mvc.Client/wwwroot/scripts/bootstrap.min.js
  20. 0
      sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.intellisense.js
  21. 0
      sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.js
  22. 0
      sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.js
  23. 0
      sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.map
  24. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css
  25. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css.map
  26. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.min.css
  27. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.css
  28. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.css.map
  29. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.min.css
  30. 0
      sandbox/Mvc.Client/wwwroot/stylesheets/jumbotron-narrow.css
  31. 0
      sandbox/Mvc.Server/.bowerrc
  32. 0
      sandbox/Mvc.Server/Controllers/AccountController.cs
  33. 0
      sandbox/Mvc.Server/Controllers/AuthorizationController.cs
  34. 0
      sandbox/Mvc.Server/Controllers/ErrorController.cs
  35. 0
      sandbox/Mvc.Server/Controllers/HomeController.cs
  36. 0
      sandbox/Mvc.Server/Controllers/ManageController.cs
  37. 0
      sandbox/Mvc.Server/Controllers/ResourceController.cs
  38. 0
      sandbox/Mvc.Server/Controllers/UserinfoController.cs
  39. 0
      sandbox/Mvc.Server/Helpers/AsyncEnumerableExtensions.cs
  40. 0
      sandbox/Mvc.Server/Helpers/FormValueRequiredAttribute.cs
  41. 0
      sandbox/Mvc.Server/Models/ApplicationDbContext.cs
  42. 0
      sandbox/Mvc.Server/Models/ApplicationUser.cs
  43. 0
      sandbox/Mvc.Server/Mvc.Server.csproj
  44. 0
      sandbox/Mvc.Server/Program.cs
  45. 0
      sandbox/Mvc.Server/Properties/launchSettings.json
  46. 0
      sandbox/Mvc.Server/Services/IEmailSender.cs
  47. 0
      sandbox/Mvc.Server/Services/ISmsSender.cs
  48. 0
      sandbox/Mvc.Server/Services/MessageServices.cs
  49. 0
      sandbox/Mvc.Server/Startup.cs
  50. 0
      sandbox/Mvc.Server/ViewModels/Account/ExternalLoginConfirmationViewModel.cs
  51. 0
      sandbox/Mvc.Server/ViewModels/Account/ForgotPasswordViewModel.cs
  52. 0
      sandbox/Mvc.Server/ViewModels/Account/LoginViewModel.cs
  53. 0
      sandbox/Mvc.Server/ViewModels/Account/RegisterViewModel.cs
  54. 0
      sandbox/Mvc.Server/ViewModels/Account/ResetPasswordViewModel.cs
  55. 0
      sandbox/Mvc.Server/ViewModels/Account/SendCodeViewModel.cs
  56. 0
      sandbox/Mvc.Server/ViewModels/Account/VerifyCodeViewModel.cs
  57. 0
      sandbox/Mvc.Server/ViewModels/Authorization/AuthorizeViewModel.cs
  58. 0
      sandbox/Mvc.Server/ViewModels/Authorization/VerifyViewModel.cs
  59. 0
      sandbox/Mvc.Server/ViewModels/Manage/AddPhoneNumberViewModel.cs
  60. 0
      sandbox/Mvc.Server/ViewModels/Manage/ChangePasswordViewModel.cs
  61. 0
      sandbox/Mvc.Server/ViewModels/Manage/ConfigureTwoFactorViewModel.cs
  62. 0
      sandbox/Mvc.Server/ViewModels/Manage/FactorViewModel.cs
  63. 0
      sandbox/Mvc.Server/ViewModels/Manage/IndexViewModel.cs
  64. 0
      sandbox/Mvc.Server/ViewModels/Manage/ManageLoginsViewModel.cs
  65. 0
      sandbox/Mvc.Server/ViewModels/Manage/RemoveLoginViewModel.cs
  66. 0
      sandbox/Mvc.Server/ViewModels/Manage/SetPasswordViewModel.cs
  67. 0
      sandbox/Mvc.Server/ViewModels/Manage/VerifyPhoneNumberViewModel.cs
  68. 0
      sandbox/Mvc.Server/ViewModels/Shared/ErrorViewModel.cs
  69. 0
      sandbox/Mvc.Server/Views/Account/ConfirmEmail.cshtml
  70. 0
      sandbox/Mvc.Server/Views/Account/ExternalLoginConfirmation.cshtml
  71. 0
      sandbox/Mvc.Server/Views/Account/ExternalLoginFailure.cshtml
  72. 0
      sandbox/Mvc.Server/Views/Account/ForgotPassword.cshtml
  73. 0
      sandbox/Mvc.Server/Views/Account/ForgotPasswordConfirmation.cshtml
  74. 0
      sandbox/Mvc.Server/Views/Account/Lockout.cshtml
  75. 0
      sandbox/Mvc.Server/Views/Account/Login.cshtml
  76. 0
      sandbox/Mvc.Server/Views/Account/Register.cshtml
  77. 0
      sandbox/Mvc.Server/Views/Account/ResetPassword.cshtml
  78. 0
      sandbox/Mvc.Server/Views/Account/ResetPasswordConfirmation.cshtml
  79. 0
      sandbox/Mvc.Server/Views/Account/SendCode.cshtml
  80. 0
      sandbox/Mvc.Server/Views/Account/VerifyCode.cshtml
  81. 0
      sandbox/Mvc.Server/Views/Authorization/Authorize.cshtml
  82. 0
      sandbox/Mvc.Server/Views/Authorization/Logout.cshtml
  83. 0
      sandbox/Mvc.Server/Views/Authorization/Verify.cshtml
  84. 0
      sandbox/Mvc.Server/Views/Home/About.cshtml
  85. 0
      sandbox/Mvc.Server/Views/Home/Contact.cshtml
  86. 0
      sandbox/Mvc.Server/Views/Home/Index.cshtml
  87. 0
      sandbox/Mvc.Server/Views/Manage/AddPhoneNumber.cshtml
  88. 0
      sandbox/Mvc.Server/Views/Manage/ChangePassword.cshtml
  89. 0
      sandbox/Mvc.Server/Views/Manage/Index.cshtml
  90. 0
      sandbox/Mvc.Server/Views/Manage/ManageLogins.cshtml
  91. 0
      sandbox/Mvc.Server/Views/Manage/RemoveLogin.cshtml
  92. 0
      sandbox/Mvc.Server/Views/Manage/SetPassword.cshtml
  93. 0
      sandbox/Mvc.Server/Views/Manage/VerifyPhoneNumber.cshtml
  94. 0
      sandbox/Mvc.Server/Views/Shared/Error.cshtml
  95. 0
      sandbox/Mvc.Server/Views/Shared/_Layout.cshtml
  96. 0
      sandbox/Mvc.Server/Views/Shared/_LoginPartial.cshtml
  97. 0
      sandbox/Mvc.Server/Views/Shared/_ValidationScriptsPartial.cshtml
  98. 0
      sandbox/Mvc.Server/Views/_ViewImports.cshtml
  99. 0
      sandbox/Mvc.Server/Views/_ViewStart.cshtml
  100. 0
      sandbox/Mvc.Server/Worker.cs

6
OpenIddict.sln

@ -5,15 +5,15 @@ VisualStudioVersion = 17.0.31710.8
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D544447C-D701-46BB-9A5B-C76C612A596B}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D544447C-D701-46BB-9A5B-C76C612A596B}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{F47D1283-0EE9-4728-8026-58405C29B786}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sandbox", "sandbox", "{F47D1283-0EE9-4728-8026-58405C29B786}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{5FC71D6A-A994-4F62-977F-88A7D25379D7}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{5FC71D6A-A994-4F62-977F-88A7D25379D7}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenIddict", "src\OpenIddict\OpenIddict.csproj", "{80A8D6CE-C29A-4602-9844-D51FEF9C33C8}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenIddict", "src\OpenIddict\OpenIddict.csproj", "{80A8D6CE-C29A-4602-9844-D51FEF9C33C8}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mvc.Client", "samples\Mvc.Client\Mvc.Client.csproj", "{96B22EB9-771A-4DCA-B828-E6EA2774CF1B}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mvc.Client", "sandbox\Mvc.Client\Mvc.Client.csproj", "{96B22EB9-771A-4DCA-B828-E6EA2774CF1B}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mvc.Server", "samples\Mvc.Server\Mvc.Server.csproj", "{7CBEAFD2-E3D0-4424-9B78-E87AB52327A6}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mvc.Server", "sandbox\Mvc.Server\Mvc.Server.csproj", "{7CBEAFD2-E3D0-4424-9B78-E87AB52327A6}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenIddict.EntityFrameworkCore", "src\OpenIddict.EntityFrameworkCore\OpenIddict.EntityFrameworkCore.csproj", "{D2450929-ED0E-420D-B475-327924F9701C}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenIddict.EntityFrameworkCore", "src\OpenIddict.EntityFrameworkCore\OpenIddict.EntityFrameworkCore.csproj", "{D2450929-ED0E-420D-B475-327924F9701C}"
EndProject EndProject

3
samples/Mvc.Server/wwwroot/_references.js

@ -1,3 +0,0 @@
/// <autosync enabled="true" />
/// <reference path="../gulpfile.js" />
/// <reference path="js/site.js" />

0
samples/Mvc.Client/Controllers/AuthenticationController.cs → sandbox/Mvc.Client/Controllers/AuthenticationController.cs

0
samples/Mvc.Client/Controllers/HomeController.cs → sandbox/Mvc.Client/Controllers/HomeController.cs

0
samples/Mvc.Client/Mvc.Client.csproj → sandbox/Mvc.Client/Mvc.Client.csproj

0
samples/Mvc.Client/Program.cs → sandbox/Mvc.Client/Program.cs

0
samples/Mvc.Client/Properties/launchSettings.json → sandbox/Mvc.Client/Properties/launchSettings.json

0
samples/Mvc.Client/Startup.cs → sandbox/Mvc.Client/Startup.cs

0
samples/Mvc.Client/Views/Shared/Home.cshtml → sandbox/Mvc.Client/Views/Shared/Home.cshtml

0
samples/Mvc.Client/Views/Shared/_Layout.cshtml → sandbox/Mvc.Client/Views/Shared/_Layout.cshtml

0
samples/Mvc.Client/Views/_ViewStart.cshtml → sandbox/Mvc.Client/Views/_ViewStart.cshtml

0
samples/Mvc.Client/appsettings.Development.json → sandbox/Mvc.Client/appsettings.Development.json

0
samples/Mvc.Client/appsettings.json → sandbox/Mvc.Client/appsettings.json

0
samples/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.eot → sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.eot

0
samples/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.svg → sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.svg

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

0
samples/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.ttf → sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.ttf

0
samples/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.woff → sandbox/Mvc.Client/wwwroot/fonts/glyphicons-halflings-regular.woff

0
samples/Mvc.Client/wwwroot/scripts/bootstrap.js → sandbox/Mvc.Client/wwwroot/scripts/bootstrap.js

0
samples/Mvc.Client/wwwroot/scripts/bootstrap.min.js → sandbox/Mvc.Client/wwwroot/scripts/bootstrap.min.js

0
samples/Mvc.Client/wwwroot/scripts/jquery-1.9.0.intellisense.js → sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.intellisense.js

0
samples/Mvc.Client/wwwroot/scripts/jquery-1.9.0.js → sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.js

0
samples/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.js → sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.js

0
samples/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.map → sandbox/Mvc.Client/wwwroot/scripts/jquery-1.9.0.min.map

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css.map → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.css.map

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.min.css → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap-theme.min.css

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap.css → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.css

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap.css.map → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.css.map

0
samples/Mvc.Client/wwwroot/stylesheets/bootstrap.min.css → sandbox/Mvc.Client/wwwroot/stylesheets/bootstrap.min.css

0
samples/Mvc.Client/wwwroot/stylesheets/jumbotron-narrow.css → sandbox/Mvc.Client/wwwroot/stylesheets/jumbotron-narrow.css

0
samples/Mvc.Server/.bowerrc → sandbox/Mvc.Server/.bowerrc

0
samples/Mvc.Server/Controllers/AccountController.cs → sandbox/Mvc.Server/Controllers/AccountController.cs

0
samples/Mvc.Server/Controllers/AuthorizationController.cs → sandbox/Mvc.Server/Controllers/AuthorizationController.cs

0
samples/Mvc.Server/Controllers/ErrorController.cs → sandbox/Mvc.Server/Controllers/ErrorController.cs

0
samples/Mvc.Server/Controllers/HomeController.cs → sandbox/Mvc.Server/Controllers/HomeController.cs

0
samples/Mvc.Server/Controllers/ManageController.cs → sandbox/Mvc.Server/Controllers/ManageController.cs

0
samples/Mvc.Server/Controllers/ResourceController.cs → sandbox/Mvc.Server/Controllers/ResourceController.cs

0
samples/Mvc.Server/Controllers/UserinfoController.cs → sandbox/Mvc.Server/Controllers/UserinfoController.cs

0
samples/Mvc.Server/Helpers/AsyncEnumerableExtensions.cs → sandbox/Mvc.Server/Helpers/AsyncEnumerableExtensions.cs

0
samples/Mvc.Server/Helpers/FormValueRequiredAttribute.cs → sandbox/Mvc.Server/Helpers/FormValueRequiredAttribute.cs

0
samples/Mvc.Server/Models/ApplicationDbContext.cs → sandbox/Mvc.Server/Models/ApplicationDbContext.cs

0
samples/Mvc.Server/Models/ApplicationUser.cs → sandbox/Mvc.Server/Models/ApplicationUser.cs

0
samples/Mvc.Server/Mvc.Server.csproj → sandbox/Mvc.Server/Mvc.Server.csproj

0
samples/Mvc.Server/Program.cs → sandbox/Mvc.Server/Program.cs

0
samples/Mvc.Server/Properties/launchSettings.json → sandbox/Mvc.Server/Properties/launchSettings.json

0
samples/Mvc.Server/Services/IEmailSender.cs → sandbox/Mvc.Server/Services/IEmailSender.cs

0
samples/Mvc.Server/Services/ISmsSender.cs → sandbox/Mvc.Server/Services/ISmsSender.cs

0
samples/Mvc.Server/Services/MessageServices.cs → sandbox/Mvc.Server/Services/MessageServices.cs

0
samples/Mvc.Server/Startup.cs → sandbox/Mvc.Server/Startup.cs

0
samples/Mvc.Server/ViewModels/Account/ExternalLoginConfirmationViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/ExternalLoginConfirmationViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/ForgotPasswordViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/ForgotPasswordViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/LoginViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/LoginViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/RegisterViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/RegisterViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/ResetPasswordViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/ResetPasswordViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/SendCodeViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/SendCodeViewModel.cs

0
samples/Mvc.Server/ViewModels/Account/VerifyCodeViewModel.cs → sandbox/Mvc.Server/ViewModels/Account/VerifyCodeViewModel.cs

0
samples/Mvc.Server/ViewModels/Authorization/AuthorizeViewModel.cs → sandbox/Mvc.Server/ViewModels/Authorization/AuthorizeViewModel.cs

0
samples/Mvc.Server/ViewModels/Authorization/VerifyViewModel.cs → sandbox/Mvc.Server/ViewModels/Authorization/VerifyViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/AddPhoneNumberViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/AddPhoneNumberViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/ChangePasswordViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/ChangePasswordViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/ConfigureTwoFactorViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/ConfigureTwoFactorViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/FactorViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/FactorViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/IndexViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/IndexViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/ManageLoginsViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/ManageLoginsViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/RemoveLoginViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/RemoveLoginViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/SetPasswordViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/SetPasswordViewModel.cs

0
samples/Mvc.Server/ViewModels/Manage/VerifyPhoneNumberViewModel.cs → sandbox/Mvc.Server/ViewModels/Manage/VerifyPhoneNumberViewModel.cs

0
samples/Mvc.Server/ViewModels/Shared/ErrorViewModel.cs → sandbox/Mvc.Server/ViewModels/Shared/ErrorViewModel.cs

0
samples/Mvc.Server/Views/Account/ConfirmEmail.cshtml → sandbox/Mvc.Server/Views/Account/ConfirmEmail.cshtml

0
samples/Mvc.Server/Views/Account/ExternalLoginConfirmation.cshtml → sandbox/Mvc.Server/Views/Account/ExternalLoginConfirmation.cshtml

0
samples/Mvc.Server/Views/Account/ExternalLoginFailure.cshtml → sandbox/Mvc.Server/Views/Account/ExternalLoginFailure.cshtml

0
samples/Mvc.Server/Views/Account/ForgotPassword.cshtml → sandbox/Mvc.Server/Views/Account/ForgotPassword.cshtml

0
samples/Mvc.Server/Views/Account/ForgotPasswordConfirmation.cshtml → sandbox/Mvc.Server/Views/Account/ForgotPasswordConfirmation.cshtml

0
samples/Mvc.Server/Views/Account/Lockout.cshtml → sandbox/Mvc.Server/Views/Account/Lockout.cshtml

0
samples/Mvc.Server/Views/Account/Login.cshtml → sandbox/Mvc.Server/Views/Account/Login.cshtml

0
samples/Mvc.Server/Views/Account/Register.cshtml → sandbox/Mvc.Server/Views/Account/Register.cshtml

0
samples/Mvc.Server/Views/Account/ResetPassword.cshtml → sandbox/Mvc.Server/Views/Account/ResetPassword.cshtml

0
samples/Mvc.Server/Views/Account/ResetPasswordConfirmation.cshtml → sandbox/Mvc.Server/Views/Account/ResetPasswordConfirmation.cshtml

0
samples/Mvc.Server/Views/Account/SendCode.cshtml → sandbox/Mvc.Server/Views/Account/SendCode.cshtml

0
samples/Mvc.Server/Views/Account/VerifyCode.cshtml → sandbox/Mvc.Server/Views/Account/VerifyCode.cshtml

0
samples/Mvc.Server/Views/Authorization/Authorize.cshtml → sandbox/Mvc.Server/Views/Authorization/Authorize.cshtml

0
samples/Mvc.Server/Views/Authorization/Logout.cshtml → sandbox/Mvc.Server/Views/Authorization/Logout.cshtml

0
samples/Mvc.Server/Views/Authorization/Verify.cshtml → sandbox/Mvc.Server/Views/Authorization/Verify.cshtml

0
samples/Mvc.Server/Views/Home/About.cshtml → sandbox/Mvc.Server/Views/Home/About.cshtml

0
samples/Mvc.Server/Views/Home/Contact.cshtml → sandbox/Mvc.Server/Views/Home/Contact.cshtml

0
samples/Mvc.Server/Views/Home/Index.cshtml → sandbox/Mvc.Server/Views/Home/Index.cshtml

0
samples/Mvc.Server/Views/Manage/AddPhoneNumber.cshtml → sandbox/Mvc.Server/Views/Manage/AddPhoneNumber.cshtml

0
samples/Mvc.Server/Views/Manage/ChangePassword.cshtml → sandbox/Mvc.Server/Views/Manage/ChangePassword.cshtml

0
samples/Mvc.Server/Views/Manage/Index.cshtml → sandbox/Mvc.Server/Views/Manage/Index.cshtml

0
samples/Mvc.Server/Views/Manage/ManageLogins.cshtml → sandbox/Mvc.Server/Views/Manage/ManageLogins.cshtml

0
samples/Mvc.Server/Views/Manage/RemoveLogin.cshtml → sandbox/Mvc.Server/Views/Manage/RemoveLogin.cshtml

0
samples/Mvc.Server/Views/Manage/SetPassword.cshtml → sandbox/Mvc.Server/Views/Manage/SetPassword.cshtml

0
samples/Mvc.Server/Views/Manage/VerifyPhoneNumber.cshtml → sandbox/Mvc.Server/Views/Manage/VerifyPhoneNumber.cshtml

0
samples/Mvc.Server/Views/Shared/Error.cshtml → sandbox/Mvc.Server/Views/Shared/Error.cshtml

0
samples/Mvc.Server/Views/Shared/_Layout.cshtml → sandbox/Mvc.Server/Views/Shared/_Layout.cshtml

0
samples/Mvc.Server/Views/Shared/_LoginPartial.cshtml → sandbox/Mvc.Server/Views/Shared/_LoginPartial.cshtml

0
samples/Mvc.Server/Views/Shared/_ValidationScriptsPartial.cshtml → sandbox/Mvc.Server/Views/Shared/_ValidationScriptsPartial.cshtml

0
samples/Mvc.Server/Views/_ViewImports.cshtml → sandbox/Mvc.Server/Views/_ViewImports.cshtml

0
samples/Mvc.Server/Views/_ViewStart.cshtml → sandbox/Mvc.Server/Views/_ViewStart.cshtml

0
samples/Mvc.Server/Worker.cs → sandbox/Mvc.Server/Worker.cs

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save