├── .gitignore ├── Instructions ├── ServiceFabricMesh │ ├── 1buildacontainer.md │ ├── 2createacr.md │ ├── 3meshhelloworld.md │ ├── 4createappvs.md │ ├── 5addservice.md │ └── README.md └── ServiceFabricNative.md ├── LICENSE ├── README.md └── eShopLegacyWebFormsSolution ├── eShopLegacyWebForms.sln └── src └── eShopLegacyWebForms ├── About.aspx ├── About.aspx.cs ├── About.aspx.designer.cs ├── App_Start ├── BundleConfig.cs └── RouteConfig.cs ├── ApplicationInsights.config ├── Bundle.config ├── Catalog ├── Create.aspx ├── Create.aspx.cs ├── Create.aspx.designer.cs ├── Delete.aspx ├── Delete.aspx.cs ├── Delete.aspx.designer.cs ├── Details.aspx ├── Details.aspx.cs ├── Details.aspx.designer.cs ├── Edit.aspx ├── Edit.aspx.cs └── Edit.aspx.designer.cs ├── Contact.aspx ├── Contact.aspx.cs ├── Contact.aspx.designer.cs ├── Content ├── base.css ├── bootstrap.css ├── bootstrap.min.css ├── custom.css └── site.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── Models ├── CatalogBrand.cs ├── CatalogDBContext.cs ├── CatalogItem.cs ├── CatalogItemHiLoGenerator.cs ├── CatalogType.cs └── Infrastructure │ ├── CatalogDBInitializer.cs │ ├── PreconfiguredData.cs │ ├── dbo.catalog_brand_hilo.Sequence.sql │ ├── dbo.catalog_hilo.Sequence.sql │ └── dbo.catalog_type_hilo.Sequence.sql ├── Modules └── ApplicationModule.cs ├── Pics ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png └── dummy.png ├── Properties └── AssemblyInfo.cs ├── Scripts ├── WebForms │ ├── DetailsView.js │ ├── Focus.js │ ├── GridView.js │ ├── MSAjax │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftAjaxApplicationServices.js │ │ ├── MicrosoftAjaxComponentModel.js │ │ ├── MicrosoftAjaxCore.js │ │ ├── MicrosoftAjaxGlobalization.js │ │ ├── MicrosoftAjaxHistory.js │ │ ├── MicrosoftAjaxNetwork.js │ │ ├── MicrosoftAjaxSerialization.js │ │ ├── MicrosoftAjaxTimer.js │ │ ├── MicrosoftAjaxWebForms.js │ │ └── MicrosoftAjaxWebServices.js │ ├── Menu.js │ ├── MenuStandards.js │ ├── SmartNav.js │ ├── TreeView.js │ ├── WebForms.js │ ├── WebParts.js │ └── WebUIValidation.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.intellisense.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── modernizr-2.6.2.js ├── respond.js └── respond.min.js ├── Services ├── CatalogService.cs ├── CatalogServiceMock.cs └── ICatalogService.cs ├── Setup ├── CatalogBrands.csv ├── CatalogItems.csv ├── CatalogItems.zip └── CatalogTypes.csv ├── Site.Master ├── Site.Master.cs ├── Site.Master.designer.cs ├── Site.Mobile.Master ├── Site.Mobile.Master.cs ├── Site.Mobile.Master.designer.cs ├── ViewModel └── PaginatedItemsViewModel.cs ├── ViewSwitcher.ascx ├── ViewSwitcher.ascx.cs ├── ViewSwitcher.ascx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── eShopLegacyWebForms.csproj ├── favicon.ico ├── fonts ├── Montserrat-Bold.eot ├── Montserrat-Bold.svg ├── Montserrat-Bold.ttf ├── Montserrat-Bold.woff ├── Montserrat-Bold.woff2 ├── Montserrat-Regular.eot ├── Montserrat-Regular.svg ├── Montserrat-Regular.ttf ├── Montserrat-Regular.woff └── Montserrat-Regular.woff2 ├── images ├── brand.png ├── brand_dark.png ├── main_banner.png └── main_footer_text.png └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/.gitignore -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/1buildacontainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/1buildacontainer.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/2createacr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/2createacr.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/3meshhelloworld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/3meshhelloworld.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/4createappvs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/4createappvs.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/5addservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/5addservice.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricMesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricMesh/README.md -------------------------------------------------------------------------------- /Instructions/ServiceFabricNative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/Instructions/ServiceFabricNative.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/README.md -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/eShopLegacyWebForms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/eShopLegacyWebForms.sln -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/About.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ApplicationInsights.config -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Bundle.config -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Create.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Delete.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Details.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Catalog/Edit.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Contact.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/base.css -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/bootstrap.css -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/bootstrap.min.css -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/custom.css -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Content/site.css -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Default.aspx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Global.asax -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Global.asax.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogBrand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogBrand.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogDBContext.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogItem.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogItemHiLoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogItemHiLoGenerator.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/CatalogType.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/CatalogDBInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/CatalogDBInitializer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/PreconfiguredData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/PreconfiguredData.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_brand_hilo.Sequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_brand_hilo.Sequence.sql -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_hilo.Sequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_hilo.Sequence.sql -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_type_hilo.Sequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Models/Infrastructure/dbo.catalog_type_hilo.Sequence.sql -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Modules/ApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Modules/ApplicationModule.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/1.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/10.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/11.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/12.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/2.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/3.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/4.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/5.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/6.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/7.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/8.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/9.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Pics/dummy.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/bootstrap.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/respond.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Scripts/respond.min.js -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/CatalogService.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/CatalogServiceMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/CatalogServiceMock.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Services/ICatalogService.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogBrands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogBrands.csv -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogItems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogItems.csv -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogItems.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogItems.zip -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogTypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Setup/CatalogTypes.csv -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Master.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewModel/PaginatedItemsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewModel/PaginatedItemsViewModel.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.Debug.config -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.Release.config -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/Web.config -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/eShopLegacyWebForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/eShopLegacyWebForms.csproj -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/favicon.ico -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.eot -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.svg -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff2 -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.eot -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.svg -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff2 -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/brand.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/brand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/brand_dark.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/main_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/main_banner.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/main_footer_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/images/main_footer_text.png -------------------------------------------------------------------------------- /eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkelhegn/ContainersSFLab/HEAD/eShopLegacyWebFormsSolution/src/eShopLegacyWebForms/packages.config --------------------------------------------------------------------------------