├── MVCServer └── MVCApp │ ├── .vs │ ├── MVCApp │ │ └── v14 │ │ │ └── .suo │ └── config │ │ └── applicationhost.config │ ├── MVCApp.sln │ └── MVCApp │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── ManageController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── MVCApp.csproj │ ├── MVCApp.csproj.user │ ├── Models │ ├── AccountViewModels.cs │ ├── IdentityModels.cs │ └── ManageViewModels.cs │ ├── Project_Readme.html │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── 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 │ ├── Utils.cs │ ├── Views │ ├── Account │ │ ├── ConfirmEmail.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 │ │ ├── ClientUpload.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── ServerMerge.cshtml │ ├── Manage │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Lockout.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ ├── Antlr3.Runtime.pdb │ ├── EntityFramework.SqlServer.xml │ ├── EntityFramework.xml │ ├── MVCApp.dll.config │ ├── MVCApp.pdb │ ├── Microsoft.AspNet.Identity.Core.xml │ ├── Microsoft.AspNet.Identity.EntityFramework.xml │ ├── Microsoft.AspNet.Identity.Owin.xml │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ ├── Microsoft.Owin.Host.SystemWeb.xml │ ├── Microsoft.Owin.Security.Cookies.xml │ ├── Microsoft.Owin.Security.Facebook.xml │ ├── Microsoft.Owin.Security.Google.xml │ ├── Microsoft.Owin.Security.MicrosoftAccount.xml │ ├── Microsoft.Owin.Security.OAuth.xml │ ├── Microsoft.Owin.Security.Twitter.xml │ ├── Microsoft.Owin.Security.xml │ ├── Microsoft.Owin.xml │ ├── Newtonsoft.Json.xml │ ├── System.Web.Helpers.xml │ ├── System.Web.Mvc.xml │ ├── System.Web.Optimization.xml │ ├── System.Web.Razor.xml │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.xml │ └── roslyn │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.VisualBasic.Core.targets │ │ └── VBCSCompiler.exe.config │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MVCApp.csproj.FileListAbsolute.txt │ │ ├── MVCApp.csprojResolveAssemblyReference.cache │ │ ├── MVCApp.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── README.md └── WinFileUpload ├── .vs └── WinFileUpload │ └── v14 │ └── .suo ├── Thumbs.db ├── WinFileUpload.sln └── WinFileUpload ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Thumbs.db ├── Utils.cs ├── WinFileUpload.csproj ├── bin └── Debug │ ├── Temp │ └── FileChunks.png.part_1.1 │ ├── Thumbs.db │ ├── WinFileUpload.exe.config │ ├── WinFileUpload.pdb │ └── WinFileUpload.vshost.exe.config └── obj └── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── WinFileUpload.Form1.resources ├── WinFileUpload.Properties.Resources.resources ├── WinFileUpload.csproj.FileListAbsolute.txt ├── WinFileUpload.csproj.GenerateResource.Cache ├── WinFileUpload.csprojResolveAssemblyReference.cache └── WinFileUpload.pdb /MVCServer/MVCApp/.vs/MVCApp/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/.vs/MVCApp/v14/.suo -------------------------------------------------------------------------------- /MVCServer/MVCApp/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp.sln -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Content/Site.css -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Content/bootstrap.css -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Controllers/AccountController.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Controllers/ManageController.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Global.asax -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Global.asax.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/MVCApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/MVCApp.csproj -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/MVCApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/MVCApp.csproj.user -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Models/IdentityModels.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Project_Readme.html -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/_references.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/respond.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Startup.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Utils.cs -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Home/ClientUpload.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Home/ClientUpload.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Home/ServerMerge.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Home/ServerMerge.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/Web.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Web.Debug.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Web.Release.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/Web.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/EntityFramework.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/MVCApp.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/MVCApp.dll.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/MVCApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/MVCApp.pdb -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.EntityFramework.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.AspNet.Identity.Owin.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Facebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Facebook.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Google.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.MicrosoftAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.MicrosoftAccount.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.OAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.OAuth.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.Twitter.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.Security.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Microsoft.Owin.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.Mvc.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.Optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.Optimization.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/System.Web.WebPages.xml -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/roslyn/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/roslyn/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/roslyn/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/roslyn/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/bin/roslyn/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/bin/roslyn/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/favicon.ico -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/obj/Debug/MVCApp.pdb -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVCServer/MVCApp/MVCApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/MVCServer/MVCApp/MVCApp/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/README.md -------------------------------------------------------------------------------- /WinFileUpload/.vs/WinFileUpload/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/.vs/WinFileUpload/v14/.suo -------------------------------------------------------------------------------- /WinFileUpload/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/Thumbs.db -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload.sln -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/App.config -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Form1.Designer.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Form1.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Form1.resx -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Program.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Properties/Resources.resx -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Properties/Settings.settings -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Thumbs.db -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/Utils.cs -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/WinFileUpload.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/WinFileUpload.csproj -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/bin/Debug/Temp/FileChunks.png.part_1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/bin/Debug/Temp/FileChunks.png.part_1.1 -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/bin/Debug/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/bin/Debug/Thumbs.db -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.exe.config -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.pdb -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/bin/Debug/WinFileUpload.vshost.exe.config -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.Form1.resources -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.Properties.Resources.resources -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-oneill/Upload-large-files-to-MVC/HEAD/WinFileUpload/WinFileUpload/obj/Debug/WinFileUpload.pdb --------------------------------------------------------------------------------