├── .gitattributes ├── .gitignore ├── LICENSE.md ├── OpenOrderFramework.Tests ├── App.config ├── Controllers │ └── HomeControllerTest.cs ├── OpenOrderFramework.Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── OpenOrderFramework.sln ├── OpenOrderFramework ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs ├── Configuration │ ├── AppConfigurations.cs │ └── IConfiguration.cs ├── Content │ ├── BarChart.css │ ├── PagedList1.css │ ├── Site.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootswatch.less │ ├── card.css │ ├── datepicker.css │ ├── datepicker.less │ └── variables.less ├── Controllers │ ├── AccountController.cs │ ├── AnalyticsController.cs │ ├── CatagoriesController.cs │ ├── CheckoutController.cs │ ├── HomeController.cs │ ├── ItemsController.cs │ ├── ManageController.cs │ ├── OrdersController.cs │ ├── RolesAdminController.cs │ ├── ShoppingCartController.cs │ ├── StoreController.cs │ └── UserAdminController.cs ├── Extensions │ └── HtmlExtensions.cs ├── Global.asax ├── Global.asax.cs ├── Migrations │ ├── 201405240343114_first.Designer.cs │ ├── 201405240343114_first.cs │ ├── 201405240343114_first.resx │ ├── 201405240359521_currentv1.Designer.cs │ ├── 201405240359521_currentv1.cs │ ├── 201405240359521_currentv1.resx │ ├── 201405240404182_second.Designer.cs │ ├── 201405240404182_second.cs │ ├── 201405240404182_second.resx │ ├── 201405281846276_vCurrent.Designer.cs │ ├── 201405281846276_vCurrent.cs │ ├── 201405281846276_vCurrent.resx │ ├── 201405301503445_v70.Designer.cs │ ├── 201405301503445_v70.cs │ ├── 201405301503445_v70.resx │ ├── 201405301511424_current.Designer.cs │ ├── 201405301511424_current.cs │ ├── 201405301511424_current.resx │ ├── 201405301617131_current1.Designer.cs │ ├── 201405301617131_current1.cs │ ├── 201405301617131_current1.resx │ ├── 201405301706280_currentv19.Designer.cs │ ├── 201405301706280_currentv19.cs │ ├── 201405301706280_currentv19.resx │ ├── 201405301731339_currentv89.Designer.cs │ ├── 201405301731339_currentv89.cs │ ├── 201405301731339_currentv89.resx │ ├── 201405301842148_updatedentity.Designer.cs │ ├── 201405301842148_updatedentity.cs │ ├── 201405301842148_updatedentity.resx │ ├── 201405311730073_data.Designer.cs │ ├── 201405311730073_data.cs │ ├── 201405311730073_data.resx │ ├── 201406031742294_currentv88.Designer.cs │ ├── 201406031742294_currentv88.cs │ ├── 201406031742294_currentv88.resx │ └── Configuration.cs ├── Models │ ├── AccountViewModels.cs │ ├── AdminViewModel.cs │ ├── Analytics.cs │ ├── Cart.cs │ ├── Catagorie.cs │ ├── IdentityModels.cs │ ├── Item.cs │ ├── ManageViewModels.cs │ ├── Order.cs │ ├── OrderDetail.cs │ └── ShoppingCart.cs ├── OpenOrderFramework.csproj ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── orderframework.pubxml ├── Scripts │ ├── _references.js │ ├── bootstrap-datepicker.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── card.js │ ├── d3.js │ ├── d3.min.js │ ├── d3pie.min.js │ ├── jquery-2.1.1.intellisense.js │ ├── jquery-2.1.1.js │ ├── jquery-2.1.1.min.js │ ├── jquery-2.1.1.min.map │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Startup.cs ├── ViewModels │ ├── OrderDateGroup.cs │ ├── ShoppingCartRemoveViewModel.cs │ └── ShoppingCartViewModel.cs ├── Views │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── DisplayEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── GuestLogin.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ ├── VerifyCode.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ ├── _ExternalLoginsListPartial.cshtml │ │ ├── _RemoveAccountPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Analytics │ │ ├── BarChart.cshtml │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ ├── Pie1.cshtml │ │ ├── Pie2.cshtml │ │ ├── Test.cshtml │ │ └── data.tsv │ ├── Catagories │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Checkout │ │ ├── AddressAndPayment.cshtml │ │ └── Complete.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Items │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── GuestIndex.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── Orders │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── RolesAdmin │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Lockout.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── ShoppingCart │ │ ├── CartSummary.cshtml │ │ └── Index.cshtml │ ├── Store │ │ ├── Browse.cshtml │ │ ├── CatagorieMenu.cshtml │ │ ├── Details.cshtml │ │ └── Index.cshtml │ ├── UsersAdmin │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── file.txt ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── README.md └── packages ├── Antlr.3.4.1.9004 ├── Antlr.3.4.1.9004.nupkg └── lib │ └── Antlr3.Runtime.dll ├── EntityFramework.6.1.0 ├── EntityFramework.6.1.0.nupkg ├── content │ ├── App.config.transform │ └── Web.config.transform ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Microsoft.AspNet.Identity.Core.2.0.0 ├── Microsoft.AspNet.Identity.Core.2.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Core.dll │ └── Microsoft.AspNet.Identity.Core.xml ├── Microsoft.AspNet.Identity.EntityFramework.2.0.0 ├── Microsoft.AspNet.Identity.EntityFramework.2.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ └── Microsoft.AspNet.Identity.EntityFramework.xml ├── Microsoft.AspNet.Identity.Owin.2.0.0 ├── Microsoft.AspNet.Identity.Owin.2.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Owin.dll │ └── Microsoft.AspNet.Identity.Owin.xml ├── Microsoft.AspNet.Identity.Samples.2.0.0-beta2 ├── Microsoft.AspNet.Identity.Samples.2.0.0-beta2.nupkg ├── ReadMe.txt └── content │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs │ ├── Content │ └── Site.css │ ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ ├── ManageController.cs │ ├── RolesAdminController.cs │ └── UserAdminController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ ├── AccountViewModels.cs │ ├── AdminViewModel.cs │ ├── IdentityModels.cs │ └── ManageViewModels.cs │ ├── Startup.cs │ ├── Views │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── DisplayEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ ├── VerifyCode.cshtml │ │ └── _ExternalLoginsListPartial.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── RolesAdmin │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Lockout.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── UsersAdmin │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ └── web.config.transform ├── Microsoft.AspNet.Mvc.5.1.2 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.1.2 ├── Microsoft.AspNet.Razor.3.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.3 ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebPages.3.1.2 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.1.2.nupkg └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Owin.2.1.0 ├── Microsoft.Owin.2.1.0.nupkg └── lib │ ├── net40 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll │ └── net45 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll ├── Microsoft.Owin.Host.SystemWeb.2.1.0 ├── Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg └── lib │ ├── net40 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml │ └── net45 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml ├── Microsoft.Owin.Security.2.1.0 ├── Microsoft.Owin.Security.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.XML │ └── Microsoft.Owin.Security.dll ├── Microsoft.Owin.Security.Cookies.2.1.0 ├── Microsoft.Owin.Security.Cookies.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Cookies.dll │ └── Microsoft.Owin.Security.Cookies.xml ├── Microsoft.Owin.Security.Facebook.2.1.0 ├── Microsoft.Owin.Security.Facebook.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Facebook.XML │ └── Microsoft.Owin.Security.Facebook.dll ├── Microsoft.Owin.Security.Google.2.1.0 ├── Microsoft.Owin.Security.Google.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Google.XML │ └── Microsoft.Owin.Security.Google.dll ├── Microsoft.Owin.Security.MicrosoftAccount.2.1.0 ├── Microsoft.Owin.Security.MicrosoftAccount.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.MicrosoftAccount.XML │ └── Microsoft.Owin.Security.MicrosoftAccount.dll ├── Microsoft.Owin.Security.OAuth.2.1.0 ├── Microsoft.Owin.Security.OAuth.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.OAuth.XML │ └── Microsoft.Owin.Security.OAuth.dll ├── Microsoft.Owin.Security.Twitter.2.1.0 ├── Microsoft.Owin.Security.Twitter.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Twitter.XML │ └── Microsoft.Owin.Security.Twitter.dll ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Ajax.3.1.2 ├── Content │ └── Scripts │ │ ├── jquery.unobtrusive-ajax.js │ │ └── jquery.unobtrusive-ajax.min.js └── Microsoft.jQuery.Unobtrusive.Ajax.3.1.2.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.3.1.2 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── NLog.2.1.0 ├── NLog.2.1.0.nupkg ├── lib │ ├── net20 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── net35 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── net40 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── net45 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── sl2 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── sl3-wp │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── sl3 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── sl4-windowsphone71 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── sl4 │ │ ├── NLog.dll │ │ └── NLog.xml │ └── sl5 │ │ ├── NLog.dll │ │ └── NLog.xml └── tools │ ├── net20 │ └── InstallNLogConfig.exe │ ├── net35 │ └── InstallNLogConfig.exe │ ├── net40 │ └── InstallNLogConfig.exe │ ├── net45 │ └── InstallNLogConfig.exe │ ├── sl4 │ └── InstallNLogConfig.exe │ └── sl5 │ └── InstallNLogConfig.exe ├── Newtonsoft.Json.5.0.6 ├── Newtonsoft.Json.5.0.6.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── netcore45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40%2Bsl4%2Bwp7%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl4+wp7+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net45%2Bwp80%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── Owin.1.0 ├── Owin.1.0.nupkg └── lib │ └── net40 │ └── Owin.dll ├── PagedList.1.17.0.0 ├── PagedList.1.17.0.0.nupkg └── lib │ └── net40 │ ├── PagedList.dll │ └── PagedList.xml ├── PagedList.Mvc.4.5.0.0 ├── Content │ └── Content │ │ └── PagedList.css ├── PagedList.Mvc.4.5.0.0.nupkg └── lib │ └── net40 │ ├── PagedList.Mvc.XML │ └── PagedList.Mvc.dll ├── Respond.1.2.0 ├── Respond.1.2.0.nupkg └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── RestSharp.104.4.0 ├── RestSharp.104.4.0.nupkg ├── lib │ ├── net35-client │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net35 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4-client │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── sl4-wp71 │ │ ├── RestSharp.WindowsPhone.dll │ │ └── RestSharp.WindowsPhone.xml │ └── sl4 │ │ ├── RestSharp.Silverlight.dll │ │ └── RestSharp.Silverlight.xml └── readme.txt ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── lib │ └── WebGrease.dll └── tools │ └── WG.exe ├── bootstrap.3.0.0 ├── bootstrap.3.0.0.nupkg └── content │ ├── Content │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── d3.3.4.4 ├── content │ ├── LICENSE.txt │ └── Scripts │ │ ├── d3.js │ │ └── d3.min.js └── d3.3.4.4.nupkg ├── jQuery.2.1.1 ├── Content │ └── Scripts │ │ ├── jquery-2.1.1-vsdoc.js │ │ ├── jquery-2.1.1.js │ │ ├── jquery-2.1.1.min.js │ │ └── jquery-2.1.1.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-2.1.1.intellisense.js │ └── uninstall.ps1 └── jQuery.2.1.1.nupkg ├── jQuery.Validation.1.11.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.11.1.nupkg └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OpenOrderFramework.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.Tests/App.config -------------------------------------------------------------------------------- /OpenOrderFramework.Tests/Controllers/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.Tests/Controllers/HomeControllerTest.cs -------------------------------------------------------------------------------- /OpenOrderFramework.Tests/OpenOrderFramework.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.Tests/OpenOrderFramework.Tests.csproj -------------------------------------------------------------------------------- /OpenOrderFramework.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenOrderFramework.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.Tests/packages.config -------------------------------------------------------------------------------- /OpenOrderFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework.sln -------------------------------------------------------------------------------- /OpenOrderFramework/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /OpenOrderFramework/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /OpenOrderFramework/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /OpenOrderFramework/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /OpenOrderFramework/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Configuration/AppConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Configuration/AppConfigurations.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Configuration/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Configuration/IConfiguration.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Content/BarChart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/BarChart.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/PagedList1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/PagedList1.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/Site.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/bootstrap.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/bootstrap.min.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/bootswatch.less -------------------------------------------------------------------------------- /OpenOrderFramework/Content/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/card.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/datepicker.css -------------------------------------------------------------------------------- /OpenOrderFramework/Content/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/datepicker.less -------------------------------------------------------------------------------- /OpenOrderFramework/Content/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Content/variables.less -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/AccountController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/AnalyticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/AnalyticsController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/CatagoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/CatagoriesController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/CheckoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/CheckoutController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/HomeController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/ItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/ItemsController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/ManageController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/RolesAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/RolesAdminController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/StoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/StoreController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Controllers/UserAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Controllers/UserAdminController.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Extensions/HtmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Extensions/HtmlExtensions.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Global.asax -------------------------------------------------------------------------------- /OpenOrderFramework/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Global.asax.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240343114_first.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240343114_first.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240343114_first.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240343114_first.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240343114_first.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240343114_first.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240359521_currentv1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240359521_currentv1.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240359521_currentv1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240359521_currentv1.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240359521_currentv1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240359521_currentv1.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240404182_second.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240404182_second.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240404182_second.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240404182_second.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405240404182_second.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405240404182_second.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405281846276_vCurrent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405281846276_vCurrent.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405281846276_vCurrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405281846276_vCurrent.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405281846276_vCurrent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405281846276_vCurrent.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301503445_v70.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301503445_v70.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301503445_v70.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301503445_v70.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301503445_v70.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301503445_v70.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301511424_current.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301511424_current.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301511424_current.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301511424_current.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301511424_current.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301511424_current.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301617131_current1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301617131_current1.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301617131_current1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301617131_current1.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301617131_current1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301617131_current1.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301706280_currentv19.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301706280_currentv19.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301706280_currentv19.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301706280_currentv19.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301706280_currentv19.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301706280_currentv19.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301731339_currentv89.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301731339_currentv89.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301731339_currentv89.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301731339_currentv89.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301731339_currentv89.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301731339_currentv89.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301842148_updatedentity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301842148_updatedentity.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301842148_updatedentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301842148_updatedentity.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405301842148_updatedentity.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405301842148_updatedentity.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405311730073_data.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405311730073_data.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405311730073_data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405311730073_data.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201405311730073_data.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201405311730073_data.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201406031742294_currentv88.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201406031742294_currentv88.Designer.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201406031742294_currentv88.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201406031742294_currentv88.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/201406031742294_currentv88.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/201406031742294_currentv88.resx -------------------------------------------------------------------------------- /OpenOrderFramework/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Migrations/Configuration.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/AdminViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/AdminViewModel.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/Analytics.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/Cart.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/Catagorie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/Catagorie.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/IdentityModels.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/Item.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/Order.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/OrderDetail.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Models/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Models/ShoppingCart.cs -------------------------------------------------------------------------------- /OpenOrderFramework/OpenOrderFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/OpenOrderFramework.csproj -------------------------------------------------------------------------------- /OpenOrderFramework/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Project_Readme.html -------------------------------------------------------------------------------- /OpenOrderFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Properties/PublishProfiles/orderframework.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Properties/PublishProfiles/orderframework.pubxml -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/_references.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/bootstrap-datepicker.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/bootstrap.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/card.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/d3.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/d3.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/d3pie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/d3pie.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery-2.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery-2.1.1.intellisense.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/respond.js -------------------------------------------------------------------------------- /OpenOrderFramework/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Scripts/respond.min.js -------------------------------------------------------------------------------- /OpenOrderFramework/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Startup.cs -------------------------------------------------------------------------------- /OpenOrderFramework/ViewModels/OrderDateGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/ViewModels/OrderDateGroup.cs -------------------------------------------------------------------------------- /OpenOrderFramework/ViewModels/ShoppingCartRemoveViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/ViewModels/ShoppingCartRemoveViewModel.cs -------------------------------------------------------------------------------- /OpenOrderFramework/ViewModels/ShoppingCartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/ViewModels/ShoppingCartViewModel.cs -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/DisplayEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/DisplayEmail.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/GuestLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/GuestLogin.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/BarChart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/BarChart.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Pie1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Pie1.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Pie2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Pie2.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/Test.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/Test.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Analytics/data.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Analytics/data.tsv -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Catagories/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Catagories/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Catagories/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Catagories/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Catagories/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Catagories/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Catagories/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Catagories/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Catagories/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Catagories/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Checkout/AddressAndPayment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Checkout/AddressAndPayment.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Checkout/Complete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Checkout/Complete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Home/About.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Items/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Items/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Items/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Items/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Items/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Items/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Items/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Items/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Items/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Items/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/GuestIndex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/GuestIndex.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Orders/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Orders/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Orders/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Orders/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Orders/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Orders/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Orders/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Orders/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Orders/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Orders/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/RolesAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/RolesAdmin/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/RolesAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/RolesAdmin/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/RolesAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/RolesAdmin/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/RolesAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/RolesAdmin/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/RolesAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/RolesAdmin/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/ShoppingCart/CartSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/ShoppingCart/CartSummary.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Store/Browse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Store/Browse.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Store/CatagorieMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Store/CatagorieMenu.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Store/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Store/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Store/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Store/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/UsersAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/UsersAdmin/Create.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/UsersAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/UsersAdmin/Delete.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/UsersAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/UsersAdmin/Details.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/UsersAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/UsersAdmin/Edit.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/UsersAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/UsersAdmin/Index.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/Web.config -------------------------------------------------------------------------------- /OpenOrderFramework/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /OpenOrderFramework/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Web.Debug.config -------------------------------------------------------------------------------- /OpenOrderFramework/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Web.Release.config -------------------------------------------------------------------------------- /OpenOrderFramework/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/Web.config -------------------------------------------------------------------------------- /OpenOrderFramework/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/favicon.ico -------------------------------------------------------------------------------- /OpenOrderFramework/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/file.txt -------------------------------------------------------------------------------- /OpenOrderFramework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /OpenOrderFramework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /OpenOrderFramework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /OpenOrderFramework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /OpenOrderFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/OpenOrderFramework/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/README.md -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/EntityFramework.6.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/EntityFramework.6.1.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/EntityFramework.6.1.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.0.0/Microsoft.AspNet.Identity.Core.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Core.2.0.0/Microsoft.AspNet.Identity.Core.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.0.0/lib/net45/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Core.2.0.0/lib/net45/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.0.0/lib/net45/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Core.2.0.0/lib/net45/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/Microsoft.AspNet.Identity.EntityFramework.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/Microsoft.AspNet.Identity.EntityFramework.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.0.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.0.0/Microsoft.AspNet.Identity.Owin.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.0.0/Microsoft.AspNet.Identity.Owin.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.0.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/Microsoft.AspNet.Identity.Samples.2.0.0-beta2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/Microsoft.AspNet.Identity.Samples.2.0.0-beta2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/ReadMe.txt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Content/Site.css -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/AccountController.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/HomeController.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/ManageController.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/RolesAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/RolesAdminController.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/UserAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Controllers/UserAdminController.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Global.asax -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Global.asax.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/AdminViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/AdminViewModel.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/IdentityModels.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Startup.cs -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/DisplayEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/DisplayEmail.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/About.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Create.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Delete.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Details.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Edit.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/RolesAdmin/Index.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Create.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Delete.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Details.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Edit.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/UsersAdmin/Index.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/Web.config -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Identity.Samples.2.0.0-beta2/content/web.config.transform -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/Microsoft.AspNet.Mvc.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/Microsoft.AspNet.Mvc.5.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Mvc.5.1.2/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/Microsoft.AspNet.Razor.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/Microsoft.AspNet.Razor.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Razor.3.1.2/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/Microsoft.AspNet.WebPages.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/Microsoft.AspNet.WebPages.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.AspNet.WebPages.3.1.2/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.1.0/Microsoft.Owin.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.2.1.0/Microsoft.Owin.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.1.0/lib/net40/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.2.1.0/lib/net40/Microsoft.Owin.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.1.0/lib/net40/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.2.1.0/lib/net40/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.1.0/lib/net45/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.2.1.0/lib/net45/Microsoft.Owin.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.2.1.0/lib/net45/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.2.1.0/lib/net45/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.1.0/Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.1.0/Microsoft.Owin.Security.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.2.1.0/Microsoft.Owin.Security.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/Microsoft.Owin.Security.Cookies.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/Microsoft.Owin.Security.Cookies.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.1.0/Microsoft.Owin.Security.Facebook.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Facebook.2.1.0/Microsoft.Owin.Security.Facebook.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.1.0/lib/net45/Microsoft.Owin.Security.Facebook.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Facebook.2.1.0/lib/net45/Microsoft.Owin.Security.Facebook.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Facebook.2.1.0/lib/net45/Microsoft.Owin.Security.Facebook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Facebook.2.1.0/lib/net45/Microsoft.Owin.Security.Facebook.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.1.0/Microsoft.Owin.Security.Google.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Google.2.1.0/Microsoft.Owin.Security.Google.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.1.0/lib/net45/Microsoft.Owin.Security.Google.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Google.2.1.0/lib/net45/Microsoft.Owin.Security.Google.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Google.2.1.0/lib/net45/Microsoft.Owin.Security.Google.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Google.2.1.0/lib/net45/Microsoft.Owin.Security.Google.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/Microsoft.Owin.Security.MicrosoftAccount.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/Microsoft.Owin.Security.MicrosoftAccount.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.MicrosoftAccount.2.1.0/lib/net45/Microsoft.Owin.Security.MicrosoftAccount.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.1.0/Microsoft.Owin.Security.OAuth.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.OAuth.2.1.0/Microsoft.Owin.Security.OAuth.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.1.0/lib/net45/Microsoft.Owin.Security.OAuth.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.OAuth.2.1.0/lib/net45/Microsoft.Owin.Security.OAuth.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.2.1.0/lib/net45/Microsoft.Owin.Security.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.OAuth.2.1.0/lib/net45/Microsoft.Owin.Security.OAuth.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.1.0/Microsoft.Owin.Security.Twitter.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Twitter.2.1.0/Microsoft.Owin.Security.Twitter.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.1.0/lib/net45/Microsoft.Owin.Security.Twitter.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Twitter.2.1.0/lib/net45/Microsoft.Owin.Security.Twitter.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Twitter.2.1.0/lib/net45/Microsoft.Owin.Security.Twitter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Owin.Security.Twitter.2.1.0/lib/net45/Microsoft.Owin.Security.Twitter.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Content/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Content/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Content/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Content/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2/Microsoft.jQuery.Unobtrusive.Ajax.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Content/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.1.2/Microsoft.jQuery.Unobtrusive.Validation.3.1.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Modernizr.2.6.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Modernizr.2.6.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Modernizr.2.6.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/NLog.2.1.0/NLog.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/NLog.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net20/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net20/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net20/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net20/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net35/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net35/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net35/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net35/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net40/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net40/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net40/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net40/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net45/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net45/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/net45/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/net45/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl2/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl2/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl2/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl2/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl3-wp/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl3-wp/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl3-wp/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl3-wp/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl3/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl3/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl3/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl3/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl4-windowsphone71/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl4-windowsphone71/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl4-windowsphone71/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl4-windowsphone71/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl4/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl4/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl4/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl4/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl5/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl5/NLog.dll -------------------------------------------------------------------------------- /packages/NLog.2.1.0/lib/sl5/NLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/lib/sl5/NLog.xml -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/net20/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/net20/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/net35/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/net35/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/net40/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/net40/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/net45/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/net45/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/sl4/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/sl4/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/NLog.2.1.0/tools/sl5/InstallNLogConfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/NLog.2.1.0/tools/sl5/InstallNLogConfig.exe -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /packages/PagedList.1.17.0.0/PagedList.1.17.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.1.17.0.0/PagedList.1.17.0.0.nupkg -------------------------------------------------------------------------------- /packages/PagedList.1.17.0.0/lib/net40/PagedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.1.17.0.0/lib/net40/PagedList.dll -------------------------------------------------------------------------------- /packages/PagedList.1.17.0.0/lib/net40/PagedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.1.17.0.0/lib/net40/PagedList.xml -------------------------------------------------------------------------------- /packages/PagedList.Mvc.4.5.0.0/Content/Content/PagedList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.Mvc.4.5.0.0/Content/Content/PagedList.css -------------------------------------------------------------------------------- /packages/PagedList.Mvc.4.5.0.0/PagedList.Mvc.4.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.Mvc.4.5.0.0/PagedList.Mvc.4.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/PagedList.Mvc.4.5.0.0/lib/net40/PagedList.Mvc.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.Mvc.4.5.0.0/lib/net40/PagedList.Mvc.XML -------------------------------------------------------------------------------- /packages/PagedList.Mvc.4.5.0.0/lib/net40/PagedList.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/PagedList.Mvc.4.5.0.0/lib/net40/PagedList.Mvc.dll -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Respond.1.2.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/Respond.1.2.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/RestSharp.104.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/RestSharp.104.4.0.nupkg -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net35-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net35-client/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net35-client/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net35-client/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net35/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net35/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net35/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net35/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net4-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net4-client/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net4-client/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net4-client/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net4/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net4/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/net4/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/net4/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/sl4-wp71/RestSharp.WindowsPhone.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.dll -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/lib/sl4/RestSharp.Silverlight.xml -------------------------------------------------------------------------------- /packages/RestSharp.104.4.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/RestSharp.104.4.0/readme.txt -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/d3.3.4.4/content/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/d3.3.4.4/content/LICENSE.txt -------------------------------------------------------------------------------- /packages/d3.3.4.4/content/Scripts/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/d3.3.4.4/content/Scripts/d3.js -------------------------------------------------------------------------------- /packages/d3.3.4.4/content/Scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/d3.3.4.4/content/Scripts/d3.min.js -------------------------------------------------------------------------------- /packages/d3.3.4.4/d3.3.4.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/d3.3.4.4/d3.3.4.4.nupkg -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Content/Scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Tools/jquery-2.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Tools/jquery-2.1.1.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.2.1.1/jQuery.2.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.2.1.1/jQuery.2.1.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbacaj/OpenOrderFramework/HEAD/packages/repositories.config --------------------------------------------------------------------------------