├── .gitignore ├── CommonLibrary └── Microsoft.CSharp.xml ├── DatabaseScripts ├── Create DB Tables │ └── 1_CreateEMIETables.sql └── Re-InitiateDB │ ├── 1_DropTables.sql │ └── 2_Re-InitiateDatabase.sql ├── EMIEWebPortal.Common ├── Common │ ├── Constants.cs │ └── UNCAccessWithCredentials.cs ├── EMIEWebPortal.Common.csproj ├── GlobalSuppressions.cs └── Properties │ └── AssemblyInfo.cs ├── EMIEWebPortal.Controllers ├── Common │ └── Common.cs ├── Controllers │ ├── ApplicationController.cs │ ├── ApprovalController.cs │ ├── ConfigurationController.cs │ ├── HomeController.cs │ ├── LoggerController.cs │ ├── LoginController.cs │ ├── MailController.cs │ ├── ReportsHelperController.cs │ ├── TicketController.cs │ ├── UserController.cs │ └── XMLHelperController.cs ├── EMIEWebPortal.Controllers.csproj ├── GlobalSuppressions.cs └── Properties │ └── AssemblyInfo.cs ├── EMIEWebPortal.DataModel ├── App.Config ├── AppOnboardDetail.cs ├── AppTechnologyMapping.cs ├── AppType.cs ├── AppUrlMapping.cs ├── Application.cs ├── ApplicationAppTypeMapping.cs ├── ApplicationDetail.cs ├── ApplicationState.cs ├── BPU.cs ├── DemoScheduler.cs ├── Device.cs ├── DocMode.cs ├── EMIEChangeType.cs ├── EMIEConfiguration.cs ├── EMIEConfigurationSetting.cs ├── EMIEDataModel.Context.cs ├── EMIEDataModel.Context.tt ├── EMIEDataModel.Designer.cs ├── EMIEDataModel.cs ├── EMIEDataModel.edmx ├── EMIEDataModel.edmx.diagram ├── EMIEDataModel.tt ├── EMIEReasonForChange.cs ├── EMIETicket.cs ├── EMIETicketAproval.cs ├── EMIETicketState.cs ├── EMIETicketStatu.cs ├── EMIETicketsArch.cs ├── EMIEWebPortal.DataModel.csproj ├── Employee.cs ├── Environment.cs ├── IssueType.cs ├── Logger.cs ├── NoOfUser.cs ├── PrimSecCriteria.cs ├── ProjectCategory.cs ├── Properties │ └── AssemblyInfo.cs ├── ResultType.cs ├── Role.cs ├── SubResult.cs ├── TM_APIDetails.cs ├── TM_BrowserStateReason.cs ├── TM_DocModeReason.cs ├── TM_Domain.cs ├── TM_TelemetryData.cs ├── Technology.cs ├── TestPass.cs ├── TestPassPrimSecMapping.cs ├── TestPassTechnologyMapping.cs ├── TestPassToTypeMapping.cs ├── TestPassType.cs ├── TestResult.cs ├── User.cs ├── UserRoleBPUMapping.cs ├── packages.config └── sysdiagram.cs ├── EMIEWebPortal.MailerLib ├── MailerLib.sln └── MailerLib │ ├── Common │ ├── Common.cs │ ├── Constants.cs │ └── Enumerations.cs │ ├── EMIEWebPortal.MailerLib.csproj │ ├── GlobalSuppressions.cs │ ├── Mail │ ├── IMailer.cs │ └── Mailer.cs │ ├── Models │ └── Configurations.cs │ └── Properties │ └── AssemblyInfo.cs ├── EMIEWebPortal.Models ├── Common │ ├── Constants.cs │ └── Enumerations.cs ├── EMIEWebPortal.Models.csproj ├── GlobalSuppressions.cs ├── Mail │ ├── MailMessage.cs │ ├── MailTypes.cs │ └── Zip │ │ └── EMIE_RegKey.zip ├── Models │ ├── ADUsers.cs │ ├── Applications.cs │ ├── ApprovalData.cs │ ├── Approvals.cs │ ├── BPUWiseTicketStatus.cs │ ├── BPUs.cs │ ├── ChangeRequestDetails.cs │ ├── ChangeTypes.cs │ ├── Configuration.cs │ ├── ConfigurationData.cs │ ├── DocModes.cs │ ├── Loggers.cs │ ├── ManageSitesModel.cs │ ├── MyApprovalsData.cs │ ├── ReasonForChanges.cs │ ├── Roles.cs │ ├── State.cs │ ├── Tickets.cs │ ├── TicketsCount.cs │ ├── UserLoginRole.cs │ ├── UserMapping.cs │ └── Users.cs └── Properties │ └── AssemblyInfo.cs ├── EMIEWebPortal.SchedulerService ├── EMIEWebPortal.SchedulerService.sln └── EMIEWebPortal.SchedulerService │ ├── App.config │ ├── App_Data │ └── EmailTemplates │ │ └── RequestScheduledForProduction.html │ ├── Constants.cs │ ├── EMIEWebPortal.SchedulerService.csproj │ ├── GlobalSuppressions.cs │ ├── Program.cs │ ├── ProjectInstaller.Designer.cs │ ├── ProjectInstaller.cs │ ├── ProjectInstaller.resx │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Readme.txt │ ├── Scheduler.Designer.cs │ └── Scheduler.cs ├── EMIEWebPortal.XMLHelperLib ├── XMLHelperLib.sln └── XMLHelperLib │ ├── App.Config │ ├── EMIEWebPortal.XMLHelperLib.csproj │ ├── GlobalSuppressions.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── XMLHelper.cs │ └── packages.config ├── EMIEWebPortal.sln ├── EMIEWebPortal ├── App │ ├── Config │ │ ├── AllRequestsConfig.js │ │ ├── ApprovalConfig.js │ │ ├── ChangeRequestConfig.js │ │ ├── ConfigurationSettingsConfig.js │ │ ├── LoginConfig.js │ │ ├── ManageSiteConfig.js │ │ ├── UserConfig.js │ │ └── VerifySandboxConfig.js │ ├── Constants.js │ ├── Controllers │ │ ├── AllRequestsController.js │ │ ├── ApprovalController.js │ │ ├── ChangeRequestController.js │ │ ├── ConfigurationController.js │ │ ├── EMIEUserManagementController.js │ │ ├── LayoutController.js │ │ ├── LoginController.js │ │ ├── LogoutController.js │ │ ├── ManageSiteController.js │ │ ├── MyApprovalController.js │ │ ├── ProdChangesController.js │ │ ├── ReportsController.js │ │ ├── SiteListsController.js │ │ ├── UserController.js │ │ ├── VerifyProductionController.js │ │ └── VerifySandboxController.js │ ├── Factory │ │ ├── CommonFunctionsFactory.js │ │ └── SandboxProductionFactory.js │ ├── Modules │ │ └── Module.js │ ├── SaveXml.js │ ├── Services │ │ ├── AllRequestsService.js │ │ ├── ApprovalsService.js │ │ ├── ChangeRequestService.js │ │ ├── ConfigurationService.js │ │ ├── LoginService.js │ │ ├── LogoutService.js │ │ ├── ManageSiteService.js │ │ ├── ModalService.js │ │ ├── ProdChangesService.js │ │ ├── ReportsService.js │ │ ├── UserService.js │ │ ├── VerifyProductionService.js │ │ └── VerifySandboxService.js │ ├── Uploads │ │ ├── Hi Image.png │ │ └── LOB_MergedDBDiagram_15Dec.png │ ├── Utilities │ │ ├── Values.js │ │ ├── message-center.html │ │ ├── message-center.js │ │ └── proceed-modal.html │ ├── Views │ │ ├── AllRequests.html │ │ ├── Approvers.html │ │ ├── Chart.html │ │ ├── ConfigurationSetting.html │ │ ├── CreateNewUser.html │ │ ├── EMIERegisterUsers.html │ │ ├── Layout.html │ │ ├── LoginHome.html │ │ ├── ManageSite.html │ │ ├── MyRequests.html │ │ ├── NewCR.html │ │ ├── ProductionChanges.html │ │ ├── ProductionSites.html │ │ ├── SiteLists.html │ │ ├── UserManagement.html │ │ ├── VerifyProduction.html │ │ ├── VerifySandbox.html │ │ ├── css │ │ │ ├── EMIEStyle.css │ │ │ └── SidePanel.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── img │ │ │ ├── AddRequest-icon-2.svg │ │ │ ├── AddRequest-icon.svg │ │ │ ├── AddUser-icon.svg │ │ │ ├── ContentSample.PNG │ │ │ ├── Delete-request_icon.svg │ │ │ ├── Dummy_newCR.png │ │ │ ├── Edit-icon.svg │ │ │ ├── First-complete-small.svg │ │ │ ├── Last-complete-step_small.svg │ │ │ ├── alert_off.png │ │ │ ├── alert_on.png │ │ │ ├── complete-step_small.svg │ │ │ ├── complete.png │ │ │ ├── completed_step.svg │ │ │ ├── current-step_small.svg │ │ │ ├── current.png │ │ │ ├── current_stage.svg │ │ │ ├── dashboard_off.png │ │ │ ├── dashboard_on.png │ │ │ ├── edit.png │ │ │ ├── first_complete.png │ │ │ ├── icon_addrequest.png │ │ │ ├── icon_delete.png │ │ │ ├── icon_delete_on.png │ │ │ ├── icon_edit.png │ │ │ ├── icon_edit_on.png │ │ │ ├── incomplete-step_small.svg │ │ │ ├── last-current-step_small.svg │ │ │ ├── last-incomplete-step_small.svg │ │ │ ├── last_step.svg │ │ │ ├── last_step_completed.svg │ │ │ ├── microsoft-logo.png │ │ │ ├── newuser.png │ │ │ ├── pending_step.svg │ │ │ ├── pending_step_2.svg │ │ │ ├── step_1_complete.svg │ │ │ ├── step_1_current.svg │ │ │ └── user.png │ ├── XML │ │ └── InternalURLs.xml │ ├── status.js │ └── utility.js ├── App_Data │ └── EmailTemplates │ │ ├── ConfigurationSettings.html │ │ ├── RequestApproval.html │ │ ├── RequestRejected.html │ │ ├── RequestRollbackOnSandBox.html │ │ ├── RequestScheduledForProduction.html │ │ ├── RequesterRaisedRequest.html │ │ └── UserManagement.html ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Content │ └── Site.css ├── EMIEWebPortal.csproj ├── Global.asax ├── Global.asax.cs ├── GlobalSuppressions.cs ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── EMIEWebAppRelease.pubxml ├── Views │ ├── Home │ │ └── Index.cshtml │ └── Web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── package.json └── packages.config ├── README.md ├── license.txt └── packages ├── Antlr.3.4.1.9004 ├── Antlr.3.4.1.9004.nupkg └── lib │ ├── Antlr3.Runtime.dll │ └── Antlr3.Runtime.pdb ├── EntityFramework.6.1.3 ├── EntityFramework.6.1.3.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.2.1 ├── Microsoft.AspNet.Identity.Core.2.2.1.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Core.dll │ └── Microsoft.AspNet.Identity.Core.xml ├── Microsoft.AspNet.Identity.EntityFramework.2.2.1 ├── Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ └── Microsoft.AspNet.Identity.EntityFramework.xml ├── Microsoft.AspNet.Mvc.5.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.2.3 ├── Microsoft.AspNet.Razor.3.2.3.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.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.2.3.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.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.3 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.6.0.4 ├── Newtonsoft.Json.6.0.4.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%2Bsl5%2Bwp80%2Bwin8%2Bwpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net45%2Bwp80%2Bwin8%2Bwpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Respond.1.2.0 ├── Respond.1.2.0.nupkg └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── lib │ └── WebGrease.dll └── tools │ └── WG.exe ├── angular-loading-bar.0.8.0 ├── angular-loading-bar.0.8.0.nupkg └── content │ ├── Content │ ├── loading-bar.css │ └── loading-bar.min.css │ └── Scripts │ ├── loading-bar.js │ └── loading-bar.min.js ├── 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 ├── jQuery.1.10.2 ├── Content │ └── Scripts │ │ ├── jquery-1.10.2-vsdoc.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ └── jquery-1.10.2.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.10.2.intellisense.js │ └── uninstall.ps1 └── jQuery.1.10.2.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/.gitignore -------------------------------------------------------------------------------- /CommonLibrary/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/CommonLibrary/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /DatabaseScripts/Create DB Tables/1_CreateEMIETables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/DatabaseScripts/Create DB Tables/1_CreateEMIETables.sql -------------------------------------------------------------------------------- /DatabaseScripts/Re-InitiateDB/1_DropTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/DatabaseScripts/Re-InitiateDB/1_DropTables.sql -------------------------------------------------------------------------------- /DatabaseScripts/Re-InitiateDB/2_Re-InitiateDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/DatabaseScripts/Re-InitiateDB/2_Re-InitiateDatabase.sql -------------------------------------------------------------------------------- /EMIEWebPortal.Common/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Common/Common/Constants.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Common/Common/UNCAccessWithCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Common/Common/UNCAccessWithCredentials.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Common/EMIEWebPortal.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Common/EMIEWebPortal.Common.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.Common/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Common/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Common/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Common/Common.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/ApplicationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/ApplicationController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/ApprovalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/ApprovalController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/ConfigurationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/ConfigurationController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/HomeController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/LoggerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/LoggerController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/LoginController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/MailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/MailController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/ReportsHelperController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/ReportsHelperController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/TicketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/TicketController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/UserController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Controllers/XMLHelperController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Controllers/XMLHelperController.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/EMIEWebPortal.Controllers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/EMIEWebPortal.Controllers.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Controllers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Controllers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/App.Config -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/AppOnboardDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/AppOnboardDetail.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/AppTechnologyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/AppTechnologyMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/AppType.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/AppUrlMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/AppUrlMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Application.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/ApplicationAppTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/ApplicationAppTypeMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/ApplicationDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/ApplicationDetail.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/ApplicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/ApplicationState.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/BPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/BPU.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/DemoScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/DemoScheduler.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Device.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/DocMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/DocMode.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEChangeType.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEConfiguration.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEConfigurationSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEConfigurationSetting.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.Context.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.Context.tt -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.Designer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.edmx -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.edmx.diagram -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEDataModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEDataModel.tt -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEReasonForChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEReasonForChange.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIETicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIETicket.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIETicketAproval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIETicketAproval.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIETicketState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIETicketState.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIETicketStatu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIETicketStatu.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIETicketsArch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIETicketsArch.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/EMIEWebPortal.DataModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/EMIEWebPortal.DataModel.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Employee.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Environment.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/IssueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/IssueType.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Logger.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/NoOfUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/NoOfUser.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/PrimSecCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/PrimSecCriteria.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/ProjectCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/ProjectCategory.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/ResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/ResultType.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Role.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/SubResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/SubResult.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TM_APIDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TM_APIDetails.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TM_BrowserStateReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TM_BrowserStateReason.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TM_DocModeReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TM_DocModeReason.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TM_Domain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TM_Domain.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TM_TelemetryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TM_TelemetryData.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/Technology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/Technology.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestPass.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestPassPrimSecMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestPassPrimSecMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestPassTechnologyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestPassTechnologyMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestPassToTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestPassToTypeMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestPassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestPassType.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/TestResult.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/User.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/UserRoleBPUMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/UserRoleBPUMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/packages.config -------------------------------------------------------------------------------- /EMIEWebPortal.DataModel/sysdiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.DataModel/sysdiagram.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib.sln -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Common/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Common/Common.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Common/Constants.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Common/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Common/Enumerations.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/EMIEWebPortal.MailerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/EMIEWebPortal.MailerLib.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Mail/IMailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Mail/IMailer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Mail/Mailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Mail/Mailer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Models/Configurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Models/Configurations.cs -------------------------------------------------------------------------------- /EMIEWebPortal.MailerLib/MailerLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.MailerLib/MailerLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Common/Constants.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Common/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Common/Enumerations.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/EMIEWebPortal.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/EMIEWebPortal.Models.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.Models/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Mail/MailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Mail/MailMessage.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Mail/MailTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Mail/MailTypes.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Mail/Zip/EMIE_RegKey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Mail/Zip/EMIE_RegKey.zip -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ADUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ADUsers.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Applications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Applications.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ApprovalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ApprovalData.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Approvals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Approvals.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/BPUWiseTicketStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/BPUWiseTicketStatus.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/BPUs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/BPUs.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ChangeRequestDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ChangeRequestDetails.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ChangeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ChangeTypes.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Configuration.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ConfigurationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ConfigurationData.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/DocModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/DocModes.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Loggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Loggers.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ManageSitesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ManageSitesModel.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/MyApprovalsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/MyApprovalsData.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/ReasonForChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/ReasonForChanges.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Roles.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/State.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Tickets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Tickets.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/TicketsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/TicketsCount.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/UserLoginRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/UserLoginRole.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/UserMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/UserMapping.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Models/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Models/Users.cs -------------------------------------------------------------------------------- /EMIEWebPortal.Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService.sln -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/App.config -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/App_Data/EmailTemplates/RequestScheduledForProduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/App_Data/EmailTemplates/RequestScheduledForProduction.html -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Constants.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Program.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/ProjectInstaller.resx -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Properties/Settings.settings -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Readme.txt -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Scheduler.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Scheduler.Designer.cs -------------------------------------------------------------------------------- /EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.SchedulerService/EMIEWebPortal.SchedulerService/Scheduler.cs -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib.sln -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/App.Config -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/EMIEWebPortal.XMLHelperLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/EMIEWebPortal.XMLHelperLib.csproj -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/XMLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/XMLHelper.cs -------------------------------------------------------------------------------- /EMIEWebPortal.XMLHelperLib/XMLHelperLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.XMLHelperLib/XMLHelperLib/packages.config -------------------------------------------------------------------------------- /EMIEWebPortal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal.sln -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/AllRequestsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/AllRequestsConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/ApprovalConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/ApprovalConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/ChangeRequestConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/ChangeRequestConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/ConfigurationSettingsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/ConfigurationSettingsConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/LoginConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/LoginConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/ManageSiteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/ManageSiteConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/UserConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/UserConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Config/VerifySandboxConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Config/VerifySandboxConfig.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Constants.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/AllRequestsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/AllRequestsController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ApprovalController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ApprovalController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ChangeRequestController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ChangeRequestController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ConfigurationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ConfigurationController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/EMIEUserManagementController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/EMIEUserManagementController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/LayoutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/LayoutController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/LoginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/LoginController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/LogoutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/LogoutController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ManageSiteController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ManageSiteController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/MyApprovalController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/MyApprovalController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ProdChangesController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ProdChangesController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/ReportsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/ReportsController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/SiteListsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/SiteListsController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/UserController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/VerifyProductionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/VerifyProductionController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Controllers/VerifySandboxController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Controllers/VerifySandboxController.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Factory/CommonFunctionsFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Factory/CommonFunctionsFactory.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Factory/SandboxProductionFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Factory/SandboxProductionFactory.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Modules/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Modules/Module.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/SaveXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/SaveXml.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/AllRequestsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/AllRequestsService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ApprovalsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ApprovalsService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ChangeRequestService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ChangeRequestService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ConfigurationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ConfigurationService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/LoginService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/LoginService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/LogoutService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/LogoutService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ManageSiteService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ManageSiteService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ModalService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ModalService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ProdChangesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ProdChangesService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/ReportsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/ReportsService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/UserService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/VerifyProductionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/VerifyProductionService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Services/VerifySandboxService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Services/VerifySandboxService.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Uploads/Hi Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Uploads/Hi Image.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Uploads/LOB_MergedDBDiagram_15Dec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Uploads/LOB_MergedDBDiagram_15Dec.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Utilities/Values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Utilities/Values.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Utilities/message-center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Utilities/message-center.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Utilities/message-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Utilities/message-center.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/Utilities/proceed-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Utilities/proceed-modal.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/AllRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/AllRequests.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/Approvers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/Approvers.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/Chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/Chart.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/ConfigurationSetting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/ConfigurationSetting.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/CreateNewUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/CreateNewUser.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/EMIERegisterUsers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/EMIERegisterUsers.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/Layout.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/LoginHome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/LoginHome.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/ManageSite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/ManageSite.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/MyRequests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/MyRequests.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/NewCR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/NewCR.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/ProductionChanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/ProductionChanges.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/ProductionSites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/ProductionSites.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/SiteLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/SiteLists.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/UserManagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/UserManagement.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/VerifyProduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/VerifyProduction.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/VerifySandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/VerifySandbox.html -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/css/EMIEStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/css/EMIEStyle.css -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/css/SidePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/css/SidePanel.css -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/AddRequest-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/AddRequest-icon-2.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/AddRequest-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/AddRequest-icon.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/AddUser-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/AddUser-icon.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/ContentSample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/ContentSample.PNG -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/Delete-request_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/Delete-request_icon.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/Dummy_newCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/Dummy_newCR.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/Edit-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/Edit-icon.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/First-complete-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/First-complete-small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/Last-complete-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/Last-complete-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/alert_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/alert_off.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/alert_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/alert_on.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/complete-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/complete-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/complete.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/completed_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/completed_step.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/current-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/current-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/current.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/current_stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/current_stage.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/dashboard_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/dashboard_off.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/dashboard_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/dashboard_on.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/edit.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/first_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/first_complete.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/icon_addrequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/icon_addrequest.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/icon_delete.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/icon_delete_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/icon_delete_on.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/icon_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/icon_edit.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/icon_edit_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/icon_edit_on.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/incomplete-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/incomplete-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/last-current-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/last-current-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/last-incomplete-step_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/last-incomplete-step_small.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/last_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/last_step.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/last_step_completed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/last_step_completed.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/microsoft-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/microsoft-logo.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/newuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/newuser.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/pending_step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/pending_step.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/pending_step_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/pending_step_2.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/step_1_complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/step_1_complete.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/step_1_current.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/step_1_current.svg -------------------------------------------------------------------------------- /EMIEWebPortal/App/Views/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/Views/img/user.png -------------------------------------------------------------------------------- /EMIEWebPortal/App/XML/InternalURLs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/XML/InternalURLs.xml -------------------------------------------------------------------------------- /EMIEWebPortal/App/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/status.js -------------------------------------------------------------------------------- /EMIEWebPortal/App/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App/utility.js -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/ConfigurationSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/ConfigurationSettings.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/RequestApproval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/RequestApproval.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/RequestRejected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/RequestRejected.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/RequestRollbackOnSandBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/RequestRollbackOnSandBox.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/RequestScheduledForProduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/RequestScheduledForProduction.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/RequesterRaisedRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/RequesterRaisedRequest.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Data/EmailTemplates/UserManagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Data/EmailTemplates/UserManagement.html -------------------------------------------------------------------------------- /EMIEWebPortal/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /EMIEWebPortal/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /EMIEWebPortal/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /EMIEWebPortal/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Content/Site.css -------------------------------------------------------------------------------- /EMIEWebPortal/EMIEWebPortal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/EMIEWebPortal.csproj -------------------------------------------------------------------------------- /EMIEWebPortal/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Global.asax -------------------------------------------------------------------------------- /EMIEWebPortal/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Global.asax.cs -------------------------------------------------------------------------------- /EMIEWebPortal/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EMIEWebPortal/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Project_Readme.html -------------------------------------------------------------------------------- /EMIEWebPortal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EMIEWebPortal/Properties/PublishProfiles/EMIEWebAppRelease.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Properties/PublishProfiles/EMIEWebAppRelease.pubxml -------------------------------------------------------------------------------- /EMIEWebPortal/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /EMIEWebPortal/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Views/Web.config -------------------------------------------------------------------------------- /EMIEWebPortal/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Web.Debug.config -------------------------------------------------------------------------------- /EMIEWebPortal/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Web.Release.config -------------------------------------------------------------------------------- /EMIEWebPortal/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/Web.config -------------------------------------------------------------------------------- /EMIEWebPortal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/favicon.ico -------------------------------------------------------------------------------- /EMIEWebPortal/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /EMIEWebPortal/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /EMIEWebPortal/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /EMIEWebPortal/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /EMIEWebPortal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/package.json -------------------------------------------------------------------------------- /EMIEWebPortal/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/EMIEWebPortal/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/license.txt -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.3/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/EntityFramework.6.1.3/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.2.1/Microsoft.AspNet.Identity.Core.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.Core.2.2.1/Microsoft.AspNet.Identity.Core.2.2.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.2.1/lib/net45/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.Core.2.2.1/lib/net45/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.2.1/lib/net45/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.Core.2.2.1/lib/net45/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.2.1/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Content/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Content/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Content/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Content/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Modernizr.2.6.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Modernizr.2.6.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Modernizr.2.6.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Newtonsoft.Json.6.0.4/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Respond.1.2.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /packages/Respond.1.2.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/Respond.1.2.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /packages/angular-loading-bar.0.8.0/angular-loading-bar.0.8.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/angular-loading-bar.0.8.0/angular-loading-bar.0.8.0.nupkg -------------------------------------------------------------------------------- /packages/angular-loading-bar.0.8.0/content/Content/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/angular-loading-bar.0.8.0/content/Content/loading-bar.css -------------------------------------------------------------------------------- /packages/angular-loading-bar.0.8.0/content/Content/loading-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/angular-loading-bar.0.8.0/content/Content/loading-bar.min.css -------------------------------------------------------------------------------- /packages/angular-loading-bar.0.8.0/content/Scripts/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/angular-loading-bar.0.8.0/content/Scripts/loading-bar.js -------------------------------------------------------------------------------- /packages/angular-loading-bar.0.8.0/content/Scripts/loading-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/angular-loading-bar.0.8.0/content/Scripts/loading-bar.min.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/bootstrap.3.0.0/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/bootstrap.3.0.0/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Tools/common.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/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/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/enterprise-mode-site-list-portal/HEAD/packages/repositories.config --------------------------------------------------------------------------------