├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Partner-Center-Explorer.sln ├── README.md ├── azuredeploy.json ├── azuredeploy.param.json ├── docs ├── Deployment.md ├── Images │ ├── aad01.png │ ├── aad02.png │ ├── aad03.png │ ├── aad04.png │ ├── appmgmt01.png │ ├── appmgmt02.png │ ├── portal01.png │ ├── portal02.png │ └── portal03.png ├── Preconsent.md └── Terminolgy.md ├── scripts └── Create-AzureADApplication.ps1 └── src └── Explorer ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── RouteConfig.cs ├── Startup.Auth.cs ├── UnityConfig.cs └── UnityMvcActivator.cs ├── ApplicationInsights.config ├── Cache ├── CacheDatabaseType.cs ├── CacheException.cs └── DistributedTokenCache.cs ├── Content ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap-theme.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map ├── font-awesome.css ├── font-awesome.min.css ├── style.css └── themes │ └── base │ ├── accordion.css │ ├── all.css │ ├── autocomplete.css │ ├── base.css │ ├── button.css │ ├── core.css │ ├── datepicker.css │ ├── dialog.css │ ├── draggable.css │ ├── images │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_888888_256x240.png │ ├── ui-icons_cc0000_256x240.png │ ├── ui-icons_cd0a0a_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui.css │ ├── jquery-ui.min.css │ ├── menu.css │ ├── progressbar.css │ ├── resizable.css │ ├── selectable.css │ ├── selectmenu.css │ ├── slider.css │ ├── sortable.css │ ├── spinner.css │ ├── tabs.css │ ├── theme.css │ └── tooltip.css ├── Controllers ├── AccountController.cs ├── AuditController.cs ├── BaseController.cs ├── CustomersController.cs ├── DomainsController.cs ├── HealthController.cs ├── HomeController.cs ├── InvoicesController.cs ├── ManageController.cs ├── OfferController.cs ├── ServiceRequestsController.cs ├── SubscriptionsController.cs ├── UsageController.cs └── UsersController.cs ├── Explorer.csproj ├── Global.asax ├── Global.asax.cs ├── GlobalSuppressions.cs ├── Logic ├── Azure │ ├── AzureHealthEvent.cs │ ├── AzureManagement.cs │ └── IncidentEvent.cs ├── CommunicationException.cs ├── Extensions.cs ├── GraphClient.cs ├── HealthEventType.cs ├── HttpService.cs ├── IGraphClient.cs ├── IHealthEvent.cs ├── IHttpService.cs ├── IPartnerOperations.cs ├── Office │ ├── OfficeHealthEvent.cs │ ├── Result.cs │ ├── ServiceCommunications.cs │ └── StatusDetails.cs ├── PartnerOperations.cs └── TelemetryHandleErrorAttribute.cs ├── Models ├── ApplicationCredential.cs ├── AuditRecordsModel.cs ├── AuditSearchModel.cs ├── ConfigurationRecordsModel.cs ├── CreatedCustomerModel.cs ├── CustomerModel.cs ├── CustomersModel.cs ├── DeploymentModel.cs ├── DomainModel.cs ├── EditUserModel.cs ├── InvoiceDetailsModel.cs ├── InvoicesModel.cs ├── LicenseModel.cs ├── NewCustomerModel.cs ├── NewDeploymentModel.cs ├── NewSubscriptionModel.cs ├── NewUserModel.cs ├── OfferModel.cs ├── OffersModel.cs ├── PartnerCenterToken.cs ├── RoleModel.cs ├── ServiceRequestModel.cs ├── ServiceRequestsModel.cs ├── SubscriptionHealthModel.cs ├── SubscriptionManageModel.cs ├── SubscriptionModel.cs ├── SubscriptionsModel.cs ├── UsageModel.cs ├── UserModel.cs └── UsersModel.cs ├── Properties └── AssemblyInfo.cs ├── Providers ├── AccessTokenProvider.cs ├── ConfigurationProvider.cs ├── ExplorerProvider.cs ├── IAccessTokenProvider.cs ├── ICacheProvider.cs ├── IConfigurationProvider.cs ├── IExplorerProvider.cs ├── IVaultProvider.cs ├── KeyVaultProvider.cs └── RedisCacheProvider.cs ├── Scripts ├── ai.0.22.9-build00167.js ├── ai.0.22.9-build00167.min.js ├── application.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-3.3.1.intellisense.js ├── jquery-3.3.1.js ├── jquery-3.3.1.min.js ├── jquery-3.3.1.min.map ├── jquery-3.3.1.slim.js ├── jquery-3.3.1.slim.min.js ├── jquery-3.3.1.slim.min.map ├── jquery-ui-1.12.1.js ├── jquery-ui-1.12.1.min.js ├── jquery.unobtrusive-ajax.js ├── jquery.unobtrusive-ajax.min.js ├── jquery.validate-vsdoc.js ├── jquery.validate.js ├── jquery.validate.min.js ├── jquery.validate.unobtrusive.js ├── jquery.validate.unobtrusive.min.js ├── respond.js ├── respond.matchmedia.addListener.js ├── respond.matchmedia.addListener.min.js └── respond.min.js ├── Security ├── AuthenticationFilterAttribute.cs ├── AuthenticationProvider.cs ├── AuthorizationFilterAttribute.cs ├── CustomerPrincipal.cs └── UserRoles.cs ├── Service References └── Application Insights │ └── ConnectedService.json ├── Startup.cs ├── Subscriptions ├── AzureSubscriptionDetails.cs ├── ISubscriptionDetails.cs └── OfficeSubscriptionDetails.cs ├── Telemetry ├── ApplicationInsightsTelemetryProvider.cs ├── EmptyTelemetryProvider.cs └── ITelemetryProvider.cs ├── Views ├── Account │ └── SignOutCallback.cshtml ├── Audit │ ├── Records.cshtml │ └── Search.cshtml ├── Automation │ ├── Index.cshtml │ ├── Invoke.cshtml │ └── List.cshtml ├── Customers │ ├── Create.cshtml │ ├── CreatedSuccessfully.cshtml │ ├── Index.cshtml │ ├── List.cshtml │ └── Show.cshtml ├── Domains │ └── ConfigurationRecords.cshtml ├── Health │ ├── Azure.cshtml │ └── Office.cshtml ├── Home │ ├── Error.cshtml │ └── Index.cshtml ├── Invoices │ ├── AzureDetails.cshtml │ ├── Details.cshtml │ ├── Index.cshtml │ └── OfficeDetails.cshtml ├── Manage │ ├── Azure.cshtml │ ├── Deployments.cshtml │ ├── NewDeployment.cshtml │ └── Office.cshtml ├── Offer │ └── Offers.cshtml ├── ServiceRequests │ ├── Index.cshtml │ └── List.cshtml ├── Shared │ ├── EditorTemplates │ │ ├── CustomerModel.cshtml │ │ ├── DeploymentModel.cshtml │ │ ├── LicenseModel.cshtml │ │ ├── OfferModel.cshtml │ │ ├── ServiceRequestModel.cshtml │ │ ├── SubscriptionModel.cshtml │ │ └── UserModel.cshtml │ ├── _Layout.cshtml │ └── _LoginPartial.cshtml ├── Subscriptions │ ├── Azure.cshtml │ ├── Create.cshtml │ ├── List.cshtml │ └── Office.cshtml ├── Usage │ └── ViewUsage.cshtml ├── Users │ ├── Create.cshtml │ ├── Edit.cshtml │ └── List.cshtml ├── Web.config └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Partner-Center-Explorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/Partner-Center-Explorer.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/README.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /azuredeploy.param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/azuredeploy.param.json -------------------------------------------------------------------------------- /docs/Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Deployment.md -------------------------------------------------------------------------------- /docs/Images/aad01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/aad01.png -------------------------------------------------------------------------------- /docs/Images/aad02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/aad02.png -------------------------------------------------------------------------------- /docs/Images/aad03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/aad03.png -------------------------------------------------------------------------------- /docs/Images/aad04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/aad04.png -------------------------------------------------------------------------------- /docs/Images/appmgmt01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/appmgmt01.png -------------------------------------------------------------------------------- /docs/Images/appmgmt02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/appmgmt02.png -------------------------------------------------------------------------------- /docs/Images/portal01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/portal01.png -------------------------------------------------------------------------------- /docs/Images/portal02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/portal02.png -------------------------------------------------------------------------------- /docs/Images/portal03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Images/portal03.png -------------------------------------------------------------------------------- /docs/Preconsent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Preconsent.md -------------------------------------------------------------------------------- /docs/Terminolgy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/docs/Terminolgy.md -------------------------------------------------------------------------------- /scripts/Create-AzureADApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/scripts/Create-AzureADApplication.ps1 -------------------------------------------------------------------------------- /src/Explorer/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Explorer/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/Explorer/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Explorer/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /src/Explorer/App_Start/UnityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/UnityConfig.cs -------------------------------------------------------------------------------- /src/Explorer/App_Start/UnityMvcActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/App_Start/UnityMvcActivator.cs -------------------------------------------------------------------------------- /src/Explorer/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/ApplicationInsights.config -------------------------------------------------------------------------------- /src/Explorer/Cache/CacheDatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Cache/CacheDatabaseType.cs -------------------------------------------------------------------------------- /src/Explorer/Cache/CacheException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Cache/CacheException.cs -------------------------------------------------------------------------------- /src/Explorer/Cache/DistributedTokenCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Cache/DistributedTokenCache.cs -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap.css.map -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Explorer/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Explorer/Content/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/font-awesome.css -------------------------------------------------------------------------------- /src/Explorer/Content/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/font-awesome.min.css -------------------------------------------------------------------------------- /src/Explorer/Content/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/style.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/accordion.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/all.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/autocomplete.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/base.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/button.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/core.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/datepicker.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/dialog.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/draggable.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/jquery-ui.min.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/menu.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/progressbar.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/resizable.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/selectable.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/selectmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/selectmenu.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/slider.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/sortable.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/spinner.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/tabs.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/theme.css -------------------------------------------------------------------------------- /src/Explorer/Content/themes/base/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Content/themes/base/tooltip.css -------------------------------------------------------------------------------- /src/Explorer/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/AuditController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/AuditController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/DomainsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/DomainsController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/HealthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/HealthController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/InvoicesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/InvoicesController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/ManageController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/OfferController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/OfferController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/ServiceRequestsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/ServiceRequestsController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/SubscriptionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/SubscriptionsController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/UsageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/UsageController.cs -------------------------------------------------------------------------------- /src/Explorer/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Controllers/UsersController.cs -------------------------------------------------------------------------------- /src/Explorer/Explorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Explorer.csproj -------------------------------------------------------------------------------- /src/Explorer/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Global.asax -------------------------------------------------------------------------------- /src/Explorer/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Global.asax.cs -------------------------------------------------------------------------------- /src/Explorer/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Azure/AzureHealthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Azure/AzureHealthEvent.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Azure/AzureManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Azure/AzureManagement.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Azure/IncidentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Azure/IncidentEvent.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/CommunicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/CommunicationException.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Extensions.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/GraphClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/GraphClient.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/HealthEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/HealthEventType.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/HttpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/HttpService.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/IGraphClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/IGraphClient.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/IHealthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/IHealthEvent.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/IHttpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/IHttpService.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/IPartnerOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/IPartnerOperations.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Office/OfficeHealthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Office/OfficeHealthEvent.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Office/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Office/Result.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Office/ServiceCommunications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Office/ServiceCommunications.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/Office/StatusDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/Office/StatusDetails.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/PartnerOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/PartnerOperations.cs -------------------------------------------------------------------------------- /src/Explorer/Logic/TelemetryHandleErrorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Logic/TelemetryHandleErrorAttribute.cs -------------------------------------------------------------------------------- /src/Explorer/Models/ApplicationCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/ApplicationCredential.cs -------------------------------------------------------------------------------- /src/Explorer/Models/AuditRecordsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/AuditRecordsModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/AuditSearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/AuditSearchModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/ConfigurationRecordsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/ConfigurationRecordsModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/CreatedCustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/CreatedCustomerModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/CustomerModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/CustomersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/CustomersModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/DeploymentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/DeploymentModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/DomainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/DomainModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/EditUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/EditUserModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/InvoiceDetailsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/InvoiceDetailsModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/InvoicesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/InvoicesModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/LicenseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/LicenseModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/NewCustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/NewCustomerModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/NewDeploymentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/NewDeploymentModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/NewSubscriptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/NewSubscriptionModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/NewUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/NewUserModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/OfferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/OfferModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/OffersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/OffersModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/PartnerCenterToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/PartnerCenterToken.cs -------------------------------------------------------------------------------- /src/Explorer/Models/RoleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/RoleModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/ServiceRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/ServiceRequestModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/ServiceRequestsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/ServiceRequestsModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/SubscriptionHealthModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/SubscriptionHealthModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/SubscriptionManageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/SubscriptionManageModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/SubscriptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/SubscriptionModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/SubscriptionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/SubscriptionsModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/UsageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/UsageModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/UserModel.cs -------------------------------------------------------------------------------- /src/Explorer/Models/UsersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Models/UsersModel.cs -------------------------------------------------------------------------------- /src/Explorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/AccessTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/AccessTokenProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/ConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/ConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/ExplorerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/ExplorerProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/IAccessTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/IAccessTokenProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/ICacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/ICacheProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/IConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/IConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/IExplorerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/IExplorerProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/IVaultProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/IVaultProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/KeyVaultProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/KeyVaultProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Providers/RedisCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Providers/RedisCacheProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Scripts/ai.0.22.9-build00167.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/ai.0.22.9-build00167.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/ai.0.22.9-build00167.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/ai.0.22.9-build00167.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/application.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.intellisense.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.min.map -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.slim.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-3.3.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-3.3.1.slim.min.map -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-ui-1.12.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-ui-1.12.1.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery-ui-1.12.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery-ui-1.12.1.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/respond.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/respond.matchmedia.addListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/respond.matchmedia.addListener.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/respond.matchmedia.addListener.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/respond.matchmedia.addListener.min.js -------------------------------------------------------------------------------- /src/Explorer/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/Explorer/Security/AuthenticationFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Security/AuthenticationFilterAttribute.cs -------------------------------------------------------------------------------- /src/Explorer/Security/AuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Security/AuthenticationProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Security/AuthorizationFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Security/AuthorizationFilterAttribute.cs -------------------------------------------------------------------------------- /src/Explorer/Security/CustomerPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Security/CustomerPrincipal.cs -------------------------------------------------------------------------------- /src/Explorer/Security/UserRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Security/UserRoles.cs -------------------------------------------------------------------------------- /src/Explorer/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /src/Explorer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Startup.cs -------------------------------------------------------------------------------- /src/Explorer/Subscriptions/AzureSubscriptionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Subscriptions/AzureSubscriptionDetails.cs -------------------------------------------------------------------------------- /src/Explorer/Subscriptions/ISubscriptionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Subscriptions/ISubscriptionDetails.cs -------------------------------------------------------------------------------- /src/Explorer/Subscriptions/OfficeSubscriptionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Subscriptions/OfficeSubscriptionDetails.cs -------------------------------------------------------------------------------- /src/Explorer/Telemetry/ApplicationInsightsTelemetryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Telemetry/ApplicationInsightsTelemetryProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Telemetry/EmptyTelemetryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Telemetry/EmptyTelemetryProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Telemetry/ITelemetryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Telemetry/ITelemetryProvider.cs -------------------------------------------------------------------------------- /src/Explorer/Views/Account/SignOutCallback.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Account/SignOutCallback.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Audit/Records.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Audit/Records.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Audit/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Audit/Search.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Automation/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Automation/Index.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Automation/Invoke.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Automation/Invoke.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Automation/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Automation/List.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Customers/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Customers/Create.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Customers/CreatedSuccessfully.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Customers/CreatedSuccessfully.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Customers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Customers/Index.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Customers/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Customers/List.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Customers/Show.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Customers/Show.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Domains/ConfigurationRecords.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Domains/ConfigurationRecords.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Health/Azure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Health/Azure.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Health/Office.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Health/Office.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Home/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Home/Error.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Invoices/AzureDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Invoices/AzureDetails.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Invoices/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Invoices/Details.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Invoices/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Invoices/Index.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Invoices/OfficeDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Invoices/OfficeDetails.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Manage/Azure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Manage/Azure.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Manage/Deployments.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Manage/Deployments.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Manage/NewDeployment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Manage/NewDeployment.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Manage/Office.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Manage/Office.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Offer/Offers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Offer/Offers.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/ServiceRequests/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/ServiceRequests/Index.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/ServiceRequests/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/ServiceRequests/List.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/CustomerModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/CustomerModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/DeploymentModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/DeploymentModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/LicenseModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/LicenseModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/OfferModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/OfferModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/ServiceRequestModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/ServiceRequestModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/SubscriptionModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/SubscriptionModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/EditorTemplates/UserModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/EditorTemplates/UserModel.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Subscriptions/Azure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Subscriptions/Azure.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Subscriptions/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Subscriptions/Create.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Subscriptions/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Subscriptions/List.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Subscriptions/Office.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Subscriptions/Office.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Usage/ViewUsage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Usage/ViewUsage.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Users/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Users/Create.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Users/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Users/Edit.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Users/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Users/List.cshtml -------------------------------------------------------------------------------- /src/Explorer/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/Web.config -------------------------------------------------------------------------------- /src/Explorer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Explorer/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Web.Debug.config -------------------------------------------------------------------------------- /src/Explorer/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Web.Release.config -------------------------------------------------------------------------------- /src/Explorer/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/Web.config -------------------------------------------------------------------------------- /src/Explorer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/favicon.ico -------------------------------------------------------------------------------- /src/Explorer/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/Explorer/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/Explorer/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/Explorer/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/Explorer/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/Explorer/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/Explorer/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Explorer/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Explorer/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Explorer/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Explorer/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/Explorer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Partner-Center-Explorer/HEAD/src/Explorer/packages.config --------------------------------------------------------------------------------