├── .gitignore ├── Configuration ├── Execute-ConfigurationScripts.ps1 ├── PSPrivateGallery.ps1 ├── PSPrivateGalleryEnvironment.psd1 ├── PSPrivateGalleryPublish.ps1 └── PSPrivateGalleryPublishEnvironment.psd1 ├── ExampleModule ├── 0.1.0 │ ├── ExampleModule.psd1 │ └── ExampleModule.psm1 ├── 0.1.1 │ ├── ExampleModule.psd1 │ └── ExampleModule.psm1 ├── 0.2.0 │ ├── ExampleModule.psd1 │ └── ExampleModule.psm1 └── 1.0.0 │ ├── ExampleModule.psd1 │ └── ExampleModule.psm1 ├── Installers ├── SqlLocalDB_x64.msi └── rewrite_amd64.msi ├── Modules ├── PSGallery │ ├── DSCResources │ │ ├── PSGalleryDatabase │ │ │ ├── PSGalleryDatabase.psd1 │ │ │ └── PSGalleryDatabase.schema.psm1 │ │ ├── PSGalleryDatabaseMigration │ │ │ ├── PSGalleryDatabaseMigration.psm1 │ │ │ └── PSGalleryDatabaseMigration.schema.mof │ │ └── PSGalleryWebServer │ │ │ ├── PSGalleryWebServer.psd1 │ │ │ └── PSGalleryWebServer.schema.psm1 │ ├── GalleryContent │ │ ├── App_Code │ │ │ └── ViewHelpers.cshtml │ │ ├── App_Data │ │ │ └── Files │ │ │ │ └── Content │ │ │ │ ├── Alert.md │ │ │ │ ├── Home.html │ │ │ │ ├── Privacy-Policy.md │ │ │ │ └── Terms-Of-Use.md │ │ ├── App_Offline-Planned.htm │ │ ├── App_Offline-Unplanned.htm │ │ ├── Areas │ │ │ └── Admin │ │ │ │ ├── DynamicData │ │ │ │ ├── Content │ │ │ │ │ ├── GridViewPager.ascx │ │ │ │ │ └── Images │ │ │ │ │ │ ├── Back.gif │ │ │ │ │ │ ├── PgFirst.gif │ │ │ │ │ │ ├── PgLast.gif │ │ │ │ │ │ ├── PgNext.gif │ │ │ │ │ │ ├── PgPrev.gif │ │ │ │ │ │ ├── header_back.gif │ │ │ │ │ │ └── plus.gif │ │ │ │ ├── Default.aspx │ │ │ │ ├── EntityTemplates │ │ │ │ │ ├── Default.ascx │ │ │ │ │ ├── Default_Edit.ascx │ │ │ │ │ └── Default_Insert.ascx │ │ │ │ ├── FieldTemplates │ │ │ │ │ ├── Boolean.ascx │ │ │ │ │ ├── Boolean_Edit.ascx │ │ │ │ │ ├── Children.ascx │ │ │ │ │ ├── Children_Insert.ascx │ │ │ │ │ ├── DateTime.ascx │ │ │ │ │ ├── DateTime_Edit.ascx │ │ │ │ │ ├── Decimal_Edit.ascx │ │ │ │ │ ├── EmailAddress.ascx │ │ │ │ │ ├── Enumeration.ascx │ │ │ │ │ ├── Enumeration_Edit.ascx │ │ │ │ │ ├── ForeignKey.ascx │ │ │ │ │ ├── ForeignKey_Edit.ascx │ │ │ │ │ ├── Integer_Edit.ascx │ │ │ │ │ ├── ManyToMany.ascx │ │ │ │ │ ├── ManyToMany_Edit.ascx │ │ │ │ │ ├── MultilineText_Edit.ascx │ │ │ │ │ ├── Text.ascx │ │ │ │ │ ├── Text_Edit.ascx │ │ │ │ │ └── Url.ascx │ │ │ │ ├── Filters │ │ │ │ │ ├── Boolean.ascx │ │ │ │ │ ├── Enumeration.ascx │ │ │ │ │ └── ForeignKey.ascx │ │ │ │ ├── PageTemplates │ │ │ │ │ ├── Details.aspx │ │ │ │ │ ├── Edit.aspx │ │ │ │ │ ├── Insert.aspx │ │ │ │ │ └── List.aspx │ │ │ │ ├── Site.css │ │ │ │ ├── Site.master │ │ │ │ └── web.config │ │ │ │ └── Views │ │ │ │ ├── Config │ │ │ │ └── Index.cshtml │ │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ │ ├── Lucene │ │ │ │ └── Index.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ ├── Branding │ │ │ ├── Content │ │ │ │ ├── Layout.css │ │ │ │ ├── PageStylings.css │ │ │ │ └── Site.css │ │ │ └── Views │ │ │ │ ├── Authentication │ │ │ │ ├── LogOn.cshtml │ │ │ │ └── _Register.cshtml │ │ │ │ ├── Errors │ │ │ │ ├── InternalError.cshtml │ │ │ │ └── NotFound.cshtml │ │ │ │ ├── Packages │ │ │ │ ├── ContactOwners.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── DisplayPackage.cshtml │ │ │ │ ├── Download.cshtml │ │ │ │ ├── ReportAbuse.cshtml │ │ │ │ ├── UploadPackage.cshtml │ │ │ │ └── _ListPackage.cshtml │ │ │ │ ├── Pages │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── GettingStarted.cshtml │ │ │ │ └── Home.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── Layout.cshtml │ │ │ │ ├── LayoutFooter.cshtml │ │ │ │ ├── ListPackages.cshtml │ │ │ │ ├── SiteMenu.cshtml │ │ │ │ └── UserDisplay.cshtml │ │ │ │ ├── Statistics │ │ │ │ └── Index.cshtml │ │ │ │ ├── Users │ │ │ │ ├── Account.cshtml │ │ │ │ └── Thanks.cshtml │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ └── web.config │ │ ├── Content │ │ │ ├── Images │ │ │ │ ├── YourPackage.png │ │ │ │ ├── arrow.png │ │ │ │ ├── errorPage.png │ │ │ │ ├── headerbackground.png │ │ │ │ ├── icons │ │ │ │ │ ├── nuget_32_mono_b.png │ │ │ │ │ └── nuget_32_mono_w.png │ │ │ │ ├── inputBackground.png │ │ │ │ ├── packageDefaultIcon-50x50.png │ │ │ │ ├── packageDefaultIcon.png │ │ │ │ ├── packageOwnerActionIcons.png │ │ │ │ ├── powershellgetArchitecture.png │ │ │ │ ├── required.png │ │ │ │ └── searchButton.png │ │ │ ├── Layout.css │ │ │ ├── Logos │ │ │ │ ├── ConfigGalleryLogo.png │ │ │ │ ├── hero.png │ │ │ │ ├── herowithlogo.png │ │ │ │ ├── nugetLogoFooter.png │ │ │ │ ├── nugetlogo.png │ │ │ │ └── outercurve.png │ │ │ ├── PageStylings.css │ │ │ ├── Site.css │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ └── shThemeRDark.css │ │ │ ├── clippy.swf │ │ │ ├── font-awesome │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ └── themes │ │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ │ └── custom │ │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ ├── D3 LICENSE.txt │ │ ├── DataServices │ │ │ ├── V1Feed.svc │ │ │ ├── V2CuratedFeed.svc │ │ │ └── V2Feed.svc │ │ ├── Public │ │ │ ├── Error.html │ │ │ ├── clientaccesspolicy.xml │ │ │ ├── configgallery.ico │ │ │ └── favicon.ico │ │ ├── Scripts │ │ │ ├── async-file-upload.js │ │ │ ├── d3.v3.js │ │ │ ├── d3.v3.min.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.6.4.min.js │ │ │ ├── jquery-ui-1.10.3.js │ │ │ ├── jquery-ui-1.10.3.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── knockout-2.2.1.debug.js │ │ │ ├── knockout-2.2.1.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── nugetgallery.js │ │ │ ├── perpackagestatsgraphs.js │ │ │ ├── stats.js │ │ │ ├── statsdimensions.js │ │ │ └── statsgraphs.js │ │ ├── T4MVC.tt.settings.t4 │ │ ├── Views │ │ │ ├── Authentication │ │ │ │ ├── LogOn.cshtml │ │ │ │ ├── _Register.cshtml │ │ │ │ └── _SignIn.cshtml │ │ │ ├── CuratedFeeds │ │ │ │ └── CuratedFeed.cshtml │ │ │ ├── CuratedPackages │ │ │ │ └── CreateCuratedPackageForm.cshtml │ │ │ ├── Errors │ │ │ │ ├── CookieError.cshtml │ │ │ │ ├── InternalError.cshtml │ │ │ │ ├── NotFound.cshtml │ │ │ │ └── ReadOnlyMode.cshtml │ │ │ ├── Packages │ │ │ │ ├── ConfirmOwner.cshtml │ │ │ │ ├── ContactOwners.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── DisplayPackage.cshtml │ │ │ │ ├── Download.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── ManagePackageOwners.cshtml │ │ │ │ ├── ReportAbuse.cshtml │ │ │ │ ├── ReportMyPackage.cshtml │ │ │ │ ├── UnverifiablePackage.cshtml │ │ │ │ ├── UploadPackage.cshtml │ │ │ │ ├── VerifyPackage.cshtml │ │ │ │ └── _PackageDependencies.cshtml │ │ │ ├── Pages │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── Home.cshtml │ │ │ │ ├── Privacy.cshtml │ │ │ │ └── Terms.cshtml │ │ │ ├── Shared │ │ │ │ ├── EditorTemplates │ │ │ │ │ └── Object.cshtml │ │ │ │ ├── Layout.cshtml │ │ │ │ ├── LayoutFooter.cshtml │ │ │ │ ├── ListPackages.cshtml │ │ │ │ ├── SiteMenu.cshtml │ │ │ │ ├── Title.cshtml │ │ │ │ ├── TwoColumnLayout.cshtml │ │ │ │ ├── UserDisplay.cshtml │ │ │ │ └── _ListPackage.cshtml │ │ │ ├── Statistics │ │ │ │ ├── Index.cshtml │ │ │ │ ├── PackageDownloadsByVersion.cshtml │ │ │ │ ├── PackageDownloadsDetail.cshtml │ │ │ │ ├── PackageVersions.cshtml │ │ │ │ ├── Packages.cshtml │ │ │ │ ├── _LastUpdated.cshtml │ │ │ │ └── _PivotTable.cshtml │ │ │ ├── Users │ │ │ │ ├── Account.cshtml │ │ │ │ ├── Confirm.cshtml │ │ │ │ ├── ConfirmationRequired.cshtml │ │ │ │ ├── ForgotPassword.cshtml │ │ │ │ ├── Packages.cshtml │ │ │ │ ├── PasswordChanged.cshtml │ │ │ │ ├── PasswordSent.cshtml │ │ │ │ ├── Profiles.cshtml │ │ │ │ ├── ResetPassword.cshtml │ │ │ │ └── Thanks.cshtml │ │ │ ├── _ViewStart.cshtml │ │ │ └── web.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── api │ │ │ └── Web.config │ │ ├── bin │ │ │ ├── AnglicanGeek.MarkdownMailer.dll │ │ │ ├── Antlr3.Runtime.dll │ │ │ ├── DynamicData.EFCodeFirstProvider.dll │ │ │ ├── Elmah.Contrib.Mvc.dll │ │ │ ├── Elmah.dll │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ ├── Glimpse.Ado.dll │ │ │ ├── Glimpse.AspNet.dll │ │ │ ├── Glimpse.Core.dll │ │ │ ├── Glimpse.EF43.dll │ │ │ ├── Glimpse.Mvc4.dll │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ ├── Lucene.Net.dll │ │ │ ├── Lucene.Net.pdb │ │ │ ├── Lucene.Net.xml │ │ │ ├── MarkdownSharp.dll │ │ │ ├── MarkdownSharp.pdb │ │ │ ├── MarkdownSharp.xml │ │ │ ├── Microsoft.ApplicationServer.Caching.Client.dll │ │ │ ├── Microsoft.ApplicationServer.Caching.Client.xml │ │ │ ├── Microsoft.ApplicationServer.Caching.Core.dll │ │ │ ├── Microsoft.ApplicationServer.Caching.Core.xml │ │ │ ├── Microsoft.AspNet.Identity.Core.dll │ │ │ ├── Microsoft.AspNet.Identity.Core.xml │ │ │ ├── Microsoft.Data.Edm.dll │ │ │ ├── Microsoft.Data.Edm.xml │ │ │ ├── Microsoft.Data.OData.dll │ │ │ ├── Microsoft.Data.OData.xml │ │ │ ├── Microsoft.Data.Services.Client.dll │ │ │ ├── Microsoft.Data.Services.Client.xml │ │ │ ├── Microsoft.Data.Services.dll │ │ │ ├── Microsoft.Data.Services.xml │ │ │ ├── Microsoft.Owin.Host.SystemWeb.dll │ │ │ ├── Microsoft.Owin.Host.SystemWeb.xml │ │ │ ├── Microsoft.Owin.Security.Cookies.dll │ │ │ ├── Microsoft.Owin.Security.Cookies.xml │ │ │ ├── Microsoft.Owin.Security.MicrosoftAccount.dll │ │ │ ├── Microsoft.Owin.Security.MicrosoftAccount.xml │ │ │ ├── Microsoft.Owin.Security.dll │ │ │ ├── Microsoft.Owin.Security.xml │ │ │ ├── Microsoft.Owin.dll │ │ │ ├── Microsoft.Owin.xml │ │ │ ├── Microsoft.RMDTL.Test.AIReliabilityModel.dll │ │ │ ├── Microsoft.RMDTL.Test.AIReliabilityModel.pdb │ │ │ ├── Microsoft.Web.DistributedCache.dll │ │ │ ├── Microsoft.Web.Helpers.dll │ │ │ ├── Microsoft.Web.Infrastructure.dll │ │ │ ├── Microsoft.Web.XmlTransform.dll │ │ │ ├── Microsoft.WindowsAzure.Configuration.dll │ │ │ ├── Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll │ │ │ ├── Microsoft.WindowsAzure.Diagnostics.dll │ │ │ ├── Microsoft.WindowsAzure.Diagnostics.xml │ │ │ ├── Microsoft.WindowsAzure.ServiceRuntime.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.pdb │ │ │ ├── Microsoft.WindowsAzure.Storage.xml │ │ │ ├── Microsoft.WindowsFabric.Common.dll │ │ │ ├── Microsoft.WindowsFabric.Data.Common.dll │ │ │ ├── MvcHaack.Ajax.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── Ninject.Web.Common.dll │ │ │ ├── Ninject.Web.Common.pdb │ │ │ ├── Ninject.Web.Common.xml │ │ │ ├── Ninject.Web.Mvc.dll │ │ │ ├── Ninject.Web.Mvc.pdb │ │ │ ├── Ninject.Web.Mvc.xml │ │ │ ├── Ninject.dll │ │ │ ├── Ninject.pdb │ │ │ ├── Ninject.xml │ │ │ ├── NuGet.Core.dll │ │ │ ├── NuGetGallery.Core.dll │ │ │ ├── NuGetGallery.Core.pdb │ │ │ ├── NuGetGallery.dll │ │ │ ├── NuGetGallery.pdb │ │ │ ├── ODataNullPropagationVisitor.dll │ │ │ ├── Owin.dll │ │ │ ├── PoliteCaptcha.dll │ │ │ ├── QueryInterceptor.dll │ │ │ ├── Recaptcha.dll │ │ │ ├── Recaptcha.pdb │ │ │ ├── RouteMagic.dll │ │ │ ├── System.Spatial.dll │ │ │ ├── System.Spatial.xml │ │ │ ├── System.Web.Helpers.dll │ │ │ ├── System.Web.Helpers.xml │ │ │ ├── System.Web.Mvc.dll │ │ │ ├── System.Web.Mvc.xml │ │ │ ├── System.Web.Optimization.dll │ │ │ ├── System.Web.Razor.dll │ │ │ ├── System.Web.Razor.xml │ │ │ ├── System.Web.WebPages.Deployment.dll │ │ │ ├── System.Web.WebPages.Deployment.xml │ │ │ ├── System.Web.WebPages.Razor.dll │ │ │ ├── System.Web.WebPages.Razor.xml │ │ │ ├── System.Web.WebPages.dll │ │ │ ├── System.Web.WebPages.xml │ │ │ ├── WebActivator.dll │ │ │ ├── WebBackgrounder.EntityFramework.dll │ │ │ ├── WebBackgrounder.dll │ │ │ ├── WebGrease.dll │ │ │ ├── de │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── es │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── fr │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── it │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── ja │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── ko │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── migrate.exe │ │ │ ├── ru │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ ├── zh-Hans │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ │ └── zh-Hant │ │ │ │ ├── Microsoft.Data.Edm.resources.dll │ │ │ │ ├── Microsoft.Data.OData.resources.dll │ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ │ │ ├── Microsoft.Data.Services.resources.dll │ │ │ │ └── System.Spatial.resources.dll │ │ └── robots.txt │ ├── PSGallery.psd1 │ └── PSGallery.psm1 ├── PackageManagementProviderResource │ └── 1.0.2 │ │ ├── DSCResources │ │ ├── MSFT_NugetPackage │ │ │ ├── MSFT_NugetPackage.psm1 │ │ │ ├── MSFT_NugetPackage.schema.mfl │ │ │ ├── MSFT_NugetPackage.schema.mof │ │ │ └── MSFT_NugetPackage.strings.psd1 │ │ ├── MSFT_PSModule │ │ │ ├── MSFT_PSModule.psm1 │ │ │ ├── MSFT_PSModule.schema.mfl │ │ │ ├── MSFT_PSModule.schema.mof │ │ │ └── MSFT_PSModule.strings.psd1 │ │ ├── MSFT_PackageManagementSource │ │ │ ├── MSFT_PackageManagementSource.psm1 │ │ │ ├── MSFT_PackageManagementSource.schema.mfl │ │ │ ├── MSFT_PackageManagementSource.schema.mof │ │ │ └── MSFT_PackageManagementSource.strings.psd1 │ │ ├── OneGetHelper.psm1 │ │ └── OneGetHelper.strings.psd1 │ │ ├── Examples │ │ ├── Sample_Install_Pester.ps1 │ │ ├── Sample_NuGet_InstallPackage.ps1 │ │ └── Sample_PSModule.ps1 │ │ ├── LICENSE.txt │ │ ├── PSGetModuleInfo.xml │ │ ├── PackageManagementProviderResource.psd1 │ │ ├── README.md │ │ └── Test │ │ ├── NugetPackage │ │ ├── NugetPackage.Get.Tests.ps1 │ │ ├── NugetPackage.IntegrationTest.Tests.ps1 │ │ ├── NugetPackage.Set.Tests.ps1 │ │ └── NugetPackage.Test.Tests.ps1 │ │ ├── OneGetTestHelper.ps1 │ │ ├── PSModule │ │ ├── PSModule.Get.Tests.ps1 │ │ ├── PSModule.IntegrationTest.Tests.ps1 │ │ └── PSModule.Set.and.Test.Tests.ps1 │ │ └── PackageManagementSource │ │ └── OneGetSource.Get.Set.Test.Tests.ps1 ├── SQLExpress │ ├── DSCResources │ │ ├── SQLExpressDatabase │ │ │ ├── SQLExpressDatabase.psm1 │ │ │ └── SQLExpressDatabase.schema.mof │ │ └── SQLExpressInstance │ │ │ ├── SQLExpressInstance.psm1 │ │ │ └── SQLExpressInstance.schema.mof │ └── SQLExpress.psd1 └── xWebAdministration │ └── 1.9.0.0 │ ├── DSCResources │ ├── Helper.psm1 │ ├── MSFT_xIIsHandler │ │ ├── MSFT_xIisHandler.psm1 │ │ └── MSFT_xIisHandler.schema.mof │ ├── MSFT_xIisFeatureDelegation │ │ ├── MSFT_xIisFeatureDelegation.psm1 │ │ └── MSFT_xIisFeatureDelegation.schema.mof │ ├── MSFT_xIisMimeTypeMapping │ │ ├── MSFT_xIisMimeTypeMapping.psm1 │ │ └── MSFT_xIisMimeTypeMapping.schema.mof │ ├── MSFT_xIisModule │ │ ├── MSFT_xIisModule.psm1 │ │ ├── MSFT_xIisModule.schema.mof │ │ └── xIisModuleDesigner.ps1 │ ├── MSFT_xSSLSettings │ │ ├── MSFT_xSSLSettings.psm1 │ │ └── MSFT_xSSLSettings.schema.mof │ ├── MSFT_xWebAppPool │ │ ├── MSFT_xWebAppPool.psm1 │ │ └── MSFT_xWebAppPool.schema.mof │ ├── MSFT_xWebAppPoolDefaults │ │ ├── MSFT_xWebAppPoolDefaults.psm1 │ │ └── MSFT_xWebAppPoolDefaults.schema.mof │ ├── MSFT_xWebApplication │ │ ├── MSFT_xWebApplication.psm1 │ │ └── MSFT_xWebApplication.schema.mof │ ├── MSFT_xWebConfigKeyValue │ │ ├── MSFT_xWebConfigKeyValue.psm1 │ │ └── MSFT_xWebConfigKeyValue.schema.mof │ ├── MSFT_xWebConnectionString │ │ ├── MSFT_xWebConnectionString.psm1 │ │ └── MSFT_xWebConnectionString.schema.mof │ ├── MSFT_xWebSiteDefaults │ │ ├── MSFT_xWebSiteDefaults.psm1 │ │ └── MSFT_xWebSiteDefaults.schema.mof │ ├── MSFT_xWebVirtualDirectory │ │ ├── MSFT_xWebVirtualDirectory.psm1 │ │ └── MSFT_xWebVirtualDirectory.schema.mof │ └── MSFT_xWebsite │ │ ├── MSFT_xWebsite.psm1 │ │ └── MSFT_xWebsite.schema.mof │ ├── Examples │ ├── README.md │ ├── Sample_xIisFeatureDelegation_AllowSome.ps1 │ ├── Sample_xIisHandler_Remove32Bit.ps1 │ ├── Sample_xIisMimeTypeMapping_RemoveVideo.ps1 │ ├── Sample_xIisServerDefaults.ps1 │ ├── Sample_xSSLSettings_RequireCert.ps1 │ ├── Sample_xWebsite_ConfigurationData.psd1 │ ├── Sample_xWebsite_NewWebsite.ps1 │ ├── Sample_xWebsite_NewWebsiteFromConfigurationData.ps1 │ ├── Sample_xWebsite_RemoveDefault.ps1 │ └── Sample_xWebsite_WithSSLFlags.ps1 │ ├── LICENSE │ ├── PSGetModuleInfo.xml │ ├── README.md │ ├── Tests │ ├── Integration │ │ ├── MSFT_xIISFeatureDelegation.Integration.Tests.ps1 │ │ ├── MSFT_xIISFeatureDelegation.config.ps1 │ │ ├── MSFT_xIISHandler.Integration.Tests.ps1 │ │ ├── MSFT_xIISHandler.config.ps1 │ │ ├── MSFT_xIISMimeTypeMapping.Integration.Tests.ps1 │ │ ├── MSFT_xIISMimeTypeMapping.config.ps1 │ │ ├── MSFT_xWebAppPool.Integration.tests.ps1 │ │ ├── MSFT_xWebAppPool.config.ps1 │ │ ├── MSFT_xWebAppPoolDefaults.Integration.Tests.ps1 │ │ ├── MSFT_xWebAppPoolDefaults.config.ps1 │ │ ├── MSFT_xWebsite.Integration.Tests.ps1 │ │ ├── MSFT_xWebsite.config.ps1 │ │ ├── MSFT_xWebsiteDefaults.Integration.Tests.ps1 │ │ └── MSFT_xWebsiteDefaults.config.ps1 │ └── Unit │ │ ├── MSFT_xIISFeatureDelegation.tests.ps1 │ │ ├── MSFT_xIISHandler.tests.ps1 │ │ ├── MSFT_xSSLSettings.Tests.ps1 │ │ ├── MSFT_xWebAppPool.Tests.ps1 │ │ ├── MSFT_xWebApplication.Tests.ps1 │ │ ├── MSFT_xWebVirtualDirectory.tests.ps1 │ │ └── MSFT_xWebsite.Tests.ps1 │ ├── appveyor.yml │ └── xWebAdministration.psd1 ├── README.md ├── Scripts └── Add-AzureServicePrincipalAccount.ps1 ├── Templates ├── azuredeploy.json └── azuredeploy.parameters.json ├── docs ├── Concepts │ ├── Build-Variables.md │ └── The-PowerShell-Private-Gallery-Configurations.md ├── Getting-Started.md ├── Static │ ├── 1-add-github-to-build.PNG │ ├── 1-choose-empty.PNG │ ├── 1-github-service-authenticated.PNG │ ├── 1-github-service-endpoint.PNG │ ├── 1-select-build.PNG │ ├── 1-settings-cog.PNG │ ├── 3-Adding-Azure-File-Copy-Task.PNG │ ├── 3-Adding-Remote-PowerShell-Task.PNG │ └── 3-Adding-Resource-Group-Deployment-Task.PNG ├── Step-By-Step │ ├── 1-Adding-Your-Fork-to-VSTS.md │ ├── 2-Adding-Azure-to-VSTS.md │ ├── 3-Defining-Your-VSTS-Build.md │ ├── 4-Deploying-And-Registering-Your-Private-Gallery.md │ └── 5-Publishing-To-Your-Private-Gallery.md ├── index.md └── static │ ├── 2-azurerm-endpoint-added.PNG │ └── 2-azurerm-service-endpoint.PNG └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | site -------------------------------------------------------------------------------- /Configuration/Execute-ConfigurationScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Configuration/Execute-ConfigurationScripts.ps1 -------------------------------------------------------------------------------- /Configuration/PSPrivateGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Configuration/PSPrivateGallery.ps1 -------------------------------------------------------------------------------- /Configuration/PSPrivateGalleryEnvironment.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Configuration/PSPrivateGalleryEnvironment.psd1 -------------------------------------------------------------------------------- /Configuration/PSPrivateGalleryPublish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Configuration/PSPrivateGalleryPublish.ps1 -------------------------------------------------------------------------------- /Configuration/PSPrivateGalleryPublishEnvironment.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Configuration/PSPrivateGalleryPublishEnvironment.psd1 -------------------------------------------------------------------------------- /ExampleModule/0.1.0/ExampleModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.1.0/ExampleModule.psd1 -------------------------------------------------------------------------------- /ExampleModule/0.1.0/ExampleModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.1.0/ExampleModule.psm1 -------------------------------------------------------------------------------- /ExampleModule/0.1.1/ExampleModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.1.1/ExampleModule.psd1 -------------------------------------------------------------------------------- /ExampleModule/0.1.1/ExampleModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.1.1/ExampleModule.psm1 -------------------------------------------------------------------------------- /ExampleModule/0.2.0/ExampleModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.2.0/ExampleModule.psd1 -------------------------------------------------------------------------------- /ExampleModule/0.2.0/ExampleModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/0.2.0/ExampleModule.psm1 -------------------------------------------------------------------------------- /ExampleModule/1.0.0/ExampleModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/1.0.0/ExampleModule.psd1 -------------------------------------------------------------------------------- /ExampleModule/1.0.0/ExampleModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/ExampleModule/1.0.0/ExampleModule.psm1 -------------------------------------------------------------------------------- /Installers/SqlLocalDB_x64.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Installers/SqlLocalDB_x64.msi -------------------------------------------------------------------------------- /Installers/rewrite_amd64.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Installers/rewrite_amd64.msi -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.psd1 -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.schema.psm1 -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.psm1 -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.schema.mof -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.psd1 -------------------------------------------------------------------------------- /Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.schema.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.schema.psm1 -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Code/ViewHelpers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Code/ViewHelpers.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Data/Files/Content/Alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Data/Files/Content/Alert.md -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Data/Files/Content/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Data/Files/Content/Home.html -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Data/Files/Content/Privacy-Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Data/Files/Content/Privacy-Policy.md -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Data/Files/Content/Terms-Of-Use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Data/Files/Content/Terms-Of-Use.md -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Offline-Planned.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Offline-Planned.htm -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/App_Offline-Unplanned.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/App_Offline-Unplanned.htm -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/GridViewPager.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/GridViewPager.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/Back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/Back.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgFirst.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgFirst.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgLast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgLast.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgNext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgNext.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgPrev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgPrev.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/header_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/header_back.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/plus.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Default.aspx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Insert.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Insert.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children_Insert.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children_Insert.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Decimal_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Decimal_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/EmailAddress.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/EmailAddress.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Integer_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Integer_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/MultilineText_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/MultilineText_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text_Edit.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text_Edit.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Url.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Url.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Boolean.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Boolean.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Enumeration.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Enumeration.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/ForeignKey.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/ForeignKey.ascx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Details.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Details.aspx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Edit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Edit.aspx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Insert.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Insert.aspx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/List.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/List.aspx -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Site.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Site.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Site.master -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/Views/Config/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/Views/Config/Index.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/Views/Lucene/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/Views/Lucene/Index.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/Views/Web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Content/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Content/Layout.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Content/PageStylings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Content/PageStylings.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Content/Site.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Authentication/LogOn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Authentication/LogOn.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Authentication/_Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Authentication/_Register.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Errors/InternalError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Errors/InternalError.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Errors/NotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Errors/NotFound.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/ContactOwners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/ContactOwners.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/Delete.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/DisplayPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/DisplayPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/Download.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/Download.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/ReportAbuse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/ReportAbuse.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/UploadPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/UploadPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Packages/_ListPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Packages/_ListPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Pages/Contact.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Pages/GettingStarted.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Pages/GettingStarted.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Pages/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Pages/Home.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Shared/Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Shared/Layout.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Shared/LayoutFooter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Shared/LayoutFooter.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Shared/ListPackages.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Shared/ListPackages.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Shared/SiteMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Shared/SiteMenu.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Shared/UserDisplay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Shared/UserDisplay.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Statistics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Statistics/Index.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Users/Account.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Users/Account.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/Users/Thanks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/Users/Thanks.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Branding/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Branding/Views/web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/YourPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/YourPackage.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/arrow.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/errorPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/errorPage.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/headerbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/headerbackground.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_b.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_w.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/inputBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/inputBackground.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon-50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon-50x50.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/packageOwnerActionIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/packageOwnerActionIcons.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/powershellgetArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/powershellgetArchitecture.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/required.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Images/searchButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Images/searchButton.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Layout.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/ConfigGalleryLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/ConfigGalleryLogo.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/hero.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/herowithlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/herowithlogo.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/nugetLogoFooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/nugetLogoFooter.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/nugetlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/nugetlogo.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Logos/outercurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Logos/outercurve.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/PageStylings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/PageStylings.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/Site.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCore.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreDefault.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreDjango.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreEclipse.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreEmacs.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreMDUltra.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreMidnight.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shCoreRDark.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeDefault.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeDjango.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeEclipse.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeEmacs.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeMDUltra.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeMidnight.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/SyntaxHighlighter/shThemeRDark.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/clippy.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/clippy.swf -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome-ie7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome-ie7.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font-awesome/font-awesome.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font/FontAwesome.otf -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.menu.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.spinner.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/custom/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/custom/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Content/themes/custom/jquery-ui-1.10.3.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Content/themes/custom/jquery-ui-1.10.3.custom.min.css -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/D3 LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/D3 LICENSE.txt -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/DataServices/V1Feed.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/DataServices/V1Feed.svc -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/DataServices/V2CuratedFeed.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/DataServices/V2CuratedFeed.svc -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/DataServices/V2Feed.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/DataServices/V2Feed.svc -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Public/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Public/Error.html -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Public/clientaccesspolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Public/clientaccesspolicy.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Public/configgallery.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Public/configgallery.ico -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Public/favicon.ico -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/async-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/async-file-upload.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/d3.v3.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/d3.v3.min.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery-1.6.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery-1.6.4.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery-1.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery-1.6.4.min.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery-ui-1.10.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery-ui-1.10.3.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery-ui-1.10.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery-ui-1.10.3.min.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/knockout-2.2.1.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/knockout-2.2.1.debug.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/knockout-2.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/knockout-2.2.1.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/nugetgallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/nugetgallery.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/perpackagestatsgraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/perpackagestatsgraphs.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/stats.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/statsdimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/statsdimensions.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Scripts/statsgraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Scripts/statsgraphs.js -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/T4MVC.tt.settings.t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/T4MVC.tt.settings.t4 -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Authentication/LogOn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Authentication/LogOn.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Authentication/_Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Authentication/_Register.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Authentication/_SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Authentication/_SignIn.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/CuratedFeeds/CuratedFeed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/CuratedFeeds/CuratedFeed.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/CuratedPackages/CreateCuratedPackageForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/CuratedPackages/CreateCuratedPackageForm.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Errors/CookieError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Errors/CookieError.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Errors/InternalError.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Errors/InternalError.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Errors/NotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Errors/NotFound.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Errors/ReadOnlyMode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Errors/ReadOnlyMode.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/ConfirmOwner.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/ConfirmOwner.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/ContactOwners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/ContactOwners.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/Delete.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/DisplayPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/DisplayPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/Download.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/Download.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/Edit.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/ManagePackageOwners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/ManagePackageOwners.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/ReportAbuse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/ReportAbuse.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/ReportMyPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/ReportMyPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/UnverifiablePackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/UnverifiablePackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/UploadPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/UploadPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/VerifyPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/VerifyPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Packages/_PackageDependencies.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Packages/_PackageDependencies.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Pages/Contact.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Pages/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Pages/Home.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Pages/Terms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Pages/Terms.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/EditorTemplates/Object.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/EditorTemplates/Object.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/Layout.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/LayoutFooter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/LayoutFooter.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/ListPackages.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/ListPackages.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/SiteMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/SiteMenu.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/Title.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/Title.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/TwoColumnLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/TwoColumnLayout.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/UserDisplay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/UserDisplay.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Shared/_ListPackage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Shared/_ListPackage.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/Index.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsByVersion.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsByVersion.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsDetail.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/PackageVersions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/PackageVersions.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/Packages.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/Packages.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/_LastUpdated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/_LastUpdated.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Statistics/_PivotTable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Statistics/_PivotTable.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/Account.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/Account.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/Confirm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/Confirm.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/ConfirmationRequired.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/ConfirmationRequired.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/ForgotPassword.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/Packages.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/Packages.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/PasswordChanged.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/PasswordChanged.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/PasswordSent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/PasswordSent.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/Profiles.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/Profiles.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/ResetPassword.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/Users/Thanks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/Users/Thanks.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Views/web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Web.Debug.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Web.Release.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/Web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/api/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/api/Web.config -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/AnglicanGeek.MarkdownMailer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/AnglicanGeek.MarkdownMailer.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/DynamicData.EFCodeFirstProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/DynamicData.EFCodeFirstProvider.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Elmah.Contrib.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Elmah.Contrib.Mvc.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Elmah.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Elmah.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/EntityFramework.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/EntityFramework.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Glimpse.Ado.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Glimpse.Ado.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Glimpse.AspNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Glimpse.AspNet.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Glimpse.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Glimpse.Core.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Glimpse.EF43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Glimpse.EF43.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Glimpse.Mvc4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Glimpse.Mvc4.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Lucene.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Lucene.Net.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Lucene.Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Lucene.Net.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Lucene.Net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Lucene.Net.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/MarkdownSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/MarkdownSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/MarkdownSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Web.DistributedCache.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.DistributedCache.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Helpers.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Configuration.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.ServiceRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.ServiceRuntime.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Common.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Data.Common.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/MvcHaack.Ajax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/MvcHaack.Ajax.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Ninject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Ninject.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/NuGet.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/NuGet.Core.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/NuGetGallery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/NuGetGallery.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/NuGetGallery.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/NuGetGallery.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ODataNullPropagationVisitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ODataNullPropagationVisitor.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Owin.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/PoliteCaptcha.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/PoliteCaptcha.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/QueryInterceptor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/QueryInterceptor.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Recaptcha.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Recaptcha.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/Recaptcha.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/Recaptcha.pdb -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/RouteMagic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/RouteMagic.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Spatial.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Spatial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Spatial.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.xml -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/WebActivator.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/WebBackgrounder.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.EntityFramework.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/WebBackgrounder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/WebGrease.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/migrate.exe -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/bin/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/bin/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Modules/PSGallery/GalleryContent/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/GalleryContent/robots.txt -------------------------------------------------------------------------------- /Modules/PSGallery/PSGallery.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/PSGallery.psd1 -------------------------------------------------------------------------------- /Modules/PSGallery/PSGallery.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PSGallery/PSGallery.psm1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.psm1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mfl -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mof -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.strings.psd1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.psm1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mfl -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mof -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PSModule/MSFT_PSModule.strings.psd1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mfl -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/OneGetHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/OneGetHelper.psm1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/DSCResources/OneGetHelper.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/DSCResources/OneGetHelper.strings.psd1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_Install_Pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_Install_Pester.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_NuGet_InstallPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_NuGet_InstallPackage.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_PSModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Examples/Sample_PSModule.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/LICENSE.txt -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/PackageManagementProviderResource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/PackageManagementProviderResource.psd1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/README.md -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Get.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Get.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.IntegrationTest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.IntegrationTest.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Set.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Set.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Test.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/NugetPackage/NugetPackage.Test.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/OneGetTestHelper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/OneGetTestHelper.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.Get.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.Get.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.IntegrationTest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.IntegrationTest.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.Set.and.Test.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/PSModule/PSModule.Set.and.Test.Tests.ps1 -------------------------------------------------------------------------------- /Modules/PackageManagementProviderResource/1.0.2/Test/PackageManagementSource/OneGetSource.Get.Set.Test.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/PackageManagementProviderResource/1.0.2/Test/PackageManagementSource/OneGetSource.Get.Set.Test.Tests.ps1 -------------------------------------------------------------------------------- /Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.psm1 -------------------------------------------------------------------------------- /Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.schema.mof -------------------------------------------------------------------------------- /Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.psm1 -------------------------------------------------------------------------------- /Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.schema.mof -------------------------------------------------------------------------------- /Modules/SQLExpress/SQLExpress.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/SQLExpress/SQLExpress.psd1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/Helper.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIIsHandler/MSFT_xIisHandler.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIIsHandler/MSFT_xIisHandler.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIIsHandler/MSFT_xIisHandler.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIIsHandler/MSFT_xIisHandler.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisFeatureDelegation/MSFT_xIisFeatureDelegation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisFeatureDelegation/MSFT_xIisFeatureDelegation.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisFeatureDelegation/MSFT_xIisFeatureDelegation.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisFeatureDelegation/MSFT_xIisFeatureDelegation.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisMimeTypeMapping/MSFT_xIisMimeTypeMapping.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisMimeTypeMapping/MSFT_xIisMimeTypeMapping.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisMimeTypeMapping/MSFT_xIisMimeTypeMapping.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisMimeTypeMapping/MSFT_xIisMimeTypeMapping.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/MSFT_xIisModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/MSFT_xIisModule.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/MSFT_xIisModule.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/MSFT_xIisModule.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/xIisModuleDesigner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/xIisModuleDesigner.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xSSLSettings/MSFT_xSSLSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xSSLSettings/MSFT_xSSLSettings.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xSSLSettings/MSFT_xSSLSettings.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xSSLSettings/MSFT_xSSLSettings.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPool/MSFT_xWebAppPool.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPool/MSFT_xWebAppPool.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPool/MSFT_xWebAppPool.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPool/MSFT_xWebAppPool.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPoolDefaults/MSFT_xWebAppPoolDefaults.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPoolDefaults/MSFT_xWebAppPoolDefaults.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPoolDefaults/MSFT_xWebAppPoolDefaults.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPoolDefaults/MSFT_xWebAppPoolDefaults.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebSiteDefaults/MSFT_xWebSiteDefaults.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebSiteDefaults/MSFT_xWebSiteDefaults.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebSiteDefaults/MSFT_xWebSiteDefaults.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebSiteDefaults/MSFT_xWebSiteDefaults.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebVirtualDirectory/MSFT_xWebVirtualDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebVirtualDirectory/MSFT_xWebVirtualDirectory.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebVirtualDirectory/MSFT_xWebVirtualDirectory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebVirtualDirectory/MSFT_xWebVirtualDirectory.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebsite/MSFT_xWebsite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebsite/MSFT_xWebsite.psm1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebsite/MSFT_xWebsite.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebsite/MSFT_xWebsite.schema.mof -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/README.md -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisFeatureDelegation_AllowSome.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisFeatureDelegation_AllowSome.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisHandler_Remove32Bit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisHandler_Remove32Bit.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisMimeTypeMapping_RemoveVideo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisMimeTypeMapping_RemoveVideo.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisServerDefaults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisServerDefaults.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xSSLSettings_RequireCert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xSSLSettings_RequireCert.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_ConfigurationData.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_ConfigurationData.psd1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_NewWebsite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_NewWebsite.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_NewWebsiteFromConfigurationData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_NewWebsiteFromConfigurationData.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_RemoveDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_RemoveDefault.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_WithSSLFlags.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_WithSSLFlags.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/LICENSE -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/PSGetModuleInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/PSGetModuleInfo.xml -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/README.md -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISHandler.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISHandler.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISHandler.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISHandler.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISMimeTypeMapping.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISMimeTypeMapping.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISMimeTypeMapping.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISMimeTypeMapping.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPool.Integration.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPool.Integration.tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPool.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPool.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPoolDefaults.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPoolDefaults.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPoolDefaults.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPoolDefaults.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsite.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsite.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsite.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsite.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsiteDefaults.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsiteDefaults.Integration.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsiteDefaults.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsiteDefaults.config.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xIISFeatureDelegation.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xIISFeatureDelegation.tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xIISHandler.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xIISHandler.tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xSSLSettings.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xSSLSettings.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebAppPool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebAppPool.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebApplication.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebVirtualDirectory.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebVirtualDirectory.tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebsite.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/Tests/Unit/MSFT_xWebsite.Tests.ps1 -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/appveyor.yml -------------------------------------------------------------------------------- /Modules/xWebAdministration/1.9.0.0/xWebAdministration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Modules/xWebAdministration/1.9.0.0/xWebAdministration.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Add-AzureServicePrincipalAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Scripts/Add-AzureServicePrincipalAccount.ps1 -------------------------------------------------------------------------------- /Templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Templates/azuredeploy.json -------------------------------------------------------------------------------- /Templates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/Templates/azuredeploy.parameters.json -------------------------------------------------------------------------------- /docs/Concepts/Build-Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Concepts/Build-Variables.md -------------------------------------------------------------------------------- /docs/Concepts/The-PowerShell-Private-Gallery-Configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Concepts/The-PowerShell-Private-Gallery-Configurations.md -------------------------------------------------------------------------------- /docs/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Getting-Started.md -------------------------------------------------------------------------------- /docs/Static/1-add-github-to-build.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-add-github-to-build.PNG -------------------------------------------------------------------------------- /docs/Static/1-choose-empty.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-choose-empty.PNG -------------------------------------------------------------------------------- /docs/Static/1-github-service-authenticated.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-github-service-authenticated.PNG -------------------------------------------------------------------------------- /docs/Static/1-github-service-endpoint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-github-service-endpoint.PNG -------------------------------------------------------------------------------- /docs/Static/1-select-build.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-select-build.PNG -------------------------------------------------------------------------------- /docs/Static/1-settings-cog.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/1-settings-cog.PNG -------------------------------------------------------------------------------- /docs/Static/3-Adding-Azure-File-Copy-Task.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/3-Adding-Azure-File-Copy-Task.PNG -------------------------------------------------------------------------------- /docs/Static/3-Adding-Remote-PowerShell-Task.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/3-Adding-Remote-PowerShell-Task.PNG -------------------------------------------------------------------------------- /docs/Static/3-Adding-Resource-Group-Deployment-Task.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Static/3-Adding-Resource-Group-Deployment-Task.PNG -------------------------------------------------------------------------------- /docs/Step-By-Step/1-Adding-Your-Fork-to-VSTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Step-By-Step/1-Adding-Your-Fork-to-VSTS.md -------------------------------------------------------------------------------- /docs/Step-By-Step/2-Adding-Azure-to-VSTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Step-By-Step/2-Adding-Azure-to-VSTS.md -------------------------------------------------------------------------------- /docs/Step-By-Step/3-Defining-Your-VSTS-Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Step-By-Step/3-Defining-Your-VSTS-Build.md -------------------------------------------------------------------------------- /docs/Step-By-Step/4-Deploying-And-Registering-Your-Private-Gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Step-By-Step/4-Deploying-And-Registering-Your-Private-Gallery.md -------------------------------------------------------------------------------- /docs/Step-By-Step/5-Publishing-To-Your-Private-Gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/Step-By-Step/5-Publishing-To-Your-Private-Gallery.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/static/2-azurerm-endpoint-added.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/static/2-azurerm-endpoint-added.PNG -------------------------------------------------------------------------------- /docs/static/2-azurerm-service-endpoint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/docs/static/2-azurerm-service-endpoint.PNG -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltlombardi/PSPrivateGalleryWalkthrough/HEAD/mkdocs.yml --------------------------------------------------------------------------------