├── .gitattributes
├── umbraco-marketplace-readme-umbraco.storageproviders.azureblob.md
├── umbraco-marketplace-readme-umbraco.storageproviders.azureblob.imagesharp.md
├── icon.png
├── global.json
├── examples
├── Directory.Packages.props
├── Umbraco.StorageProviders.AzureBlob.TestSite
│ ├── Views
│ │ ├── Person.cshtml
│ │ ├── Partials
│ │ │ ├── Components
│ │ │ │ └── LatestBlogPosts
│ │ │ │ │ ├── NoContent.cshtml
│ │ │ │ │ └── Default.cshtml
│ │ │ ├── CategoryLinks.cshtml
│ │ │ ├── blockgrid
│ │ │ │ ├── Components
│ │ │ │ │ ├── umbBlockGridDemoHeadlineBlock.cshtml
│ │ │ │ │ ├── umbBlockGridDemoRichTextBlock.cshtml
│ │ │ │ │ ├── umbBlockGridDemoTwoColumnLayoutBlock.cshtml
│ │ │ │ │ ├── latestBlogposts.cshtml
│ │ │ │ │ └── umbBlockGridDemoImageBlock.cshtml
│ │ │ │ ├── default.cshtml
│ │ │ │ ├── areas.cshtml
│ │ │ │ ├── area.cshtml
│ │ │ │ └── items.cshtml
│ │ │ ├── SectionHeader.cshtml
│ │ │ ├── blocklist
│ │ │ │ ├── Components
│ │ │ │ │ └── feature.cshtml
│ │ │ │ └── default.cshtml
│ │ │ ├── singleblock
│ │ │ │ └── default.cshtml
│ │ │ ├── Navigation
│ │ │ │ ├── TopNavigation.cshtml
│ │ │ │ └── SubNavigation.cshtml
│ │ │ └── ContactForm.cshtml
│ │ ├── _ViewImports.cshtml
│ │ ├── Blog.cshtml
│ │ ├── Contact.cshtml
│ │ ├── ContentPage.cshtml
│ │ ├── Blogpost.cshtml
│ │ ├── Home.cshtml
│ │ ├── Product.cshtml
│ │ ├── Products.cshtml
│ │ ├── People.cshtml
│ │ └── _Master.cshtml
│ ├── wwwroot
│ │ ├── favicon.ico
│ │ ├── scripts
│ │ │ └── umbraco-starterkit-app.js
│ │ └── css
│ │ │ └── umbraco-starterkit-blockgrid.css
│ ├── Properties
│ │ ├── serviceDependencies.json
│ │ ├── serviceDependencies.local.json
│ │ └── launchSettings.json
│ ├── .gitignore
│ ├── Program.cs
│ ├── appsettings.Development.json
│ ├── appsettings.json
│ ├── Umbraco.StorageProviders.AzureBlob.TestSite.csproj
│ ├── AzureBlobFileSystemComposer.cs
│ └── umbraco
│ │ └── models
│ │ ├── Folder.generated.cs
│ │ ├── UmbBlockGridDemoTwoColumnLayoutBlock.generated.cs
│ │ ├── Member.generated.cs
│ │ ├── UmbBlockGridDemoHeadlineBlock.generated.cs
│ │ ├── UmbBlockGridDemoImageBlock.generated.cs
│ │ ├── UmbBlockGridDemoRichTextBlock.generated.cs
│ │ ├── Feature.generated.cs
│ │ ├── LatestBlogposts.generated.cs
│ │ ├── File.generated.cs
│ │ ├── UmbracoMediaAudio.generated.cs
│ │ ├── UmbracoMediaVideo.generated.cs
│ │ ├── UmbracoMediaArticle.generated.cs
│ │ ├── UmbracoMediaVectorGraphics.generated.cs
│ │ ├── Image.generated.cs
│ │ ├── ContentBase.generated.cs
│ │ ├── ContentPage.generated.cs
│ │ ├── Product.generated.cs
│ │ ├── People.generated.cs
│ │ ├── Blogpost.generated.cs
│ │ ├── Blog.generated.cs
│ │ ├── Products.generated.cs
│ │ ├── NavigationBase.generated.cs
│ │ └── Contact.generated.cs
└── Directory.Build.props
├── src
├── Umbraco.StorageProviders
│ ├── buildTransitive
│ │ └── Umbraco.StorageProviders.props
│ ├── Umbraco.StorageProviders.csproj
│ ├── CdnMediaUrlProviderOptions.cs
│ ├── appsettings-schema.Umbraco.StorageProviders.json
│ ├── CdnMediaUrlProvider.cs
│ └── DependencyInjection
│ │ └── CdnMediaUrlProviderExtensions.cs
├── Umbraco.StorageProviders.AzureBlob
│ ├── buildTransitive
│ │ └── Umbraco.StorageProviders.AzureBlob.props
│ ├── IO
│ │ ├── IAzureBlobFileSystemProvider.cs
│ │ ├── IAzureBlobFileSystem.cs
│ │ ├── AzureBlobFileSystemOptions.cs
│ │ ├── AzureBlobFileSystemProvider.cs
│ │ └── AzureBlobFileSystemOptionsExtensions.cs
│ ├── Umbraco.StorageProviders.AzureBlob.csproj
│ ├── AzureBlobPrefixInfo.cs
│ ├── AzureBlobDirectoryContents.cs
│ ├── appsettings-schema.Umbraco.StorageProviders.AzureBlob.json
│ ├── AzureBlobItemInfo.cs
│ ├── AzureBlobFileProvider.cs
│ └── DependencyInjection
│ │ ├── AzureBlobMediaFileSystemExtensions.cs
│ │ └── AzureBlobFileSystemExtensions.cs
└── Umbraco.StorageProviders.AzureBlob.ImageSharp
│ ├── Umbraco.StorageProviders.AzureBlob.ImageSharp.csproj
│ ├── DependencyInjection
│ └── AddAzureBlobImageSharpCacheExtensions.cs
│ └── AzureBlobFileSystemImageCache.cs
├── version.json
├── icon.svg
├── umbraco-marketplace-readme-umbraco.storageproviders.md
├── NuGet.config
├── umbraco-marketplace-umbraco.storageproviders.azureblob.imagesharp.json
├── Directory.Packages.props
├── LICENSE
├── umbraco-marketplace-umbraco.storageproviders.azureblob.json
├── umbraco-marketplace-umbraco.storageproviders.json
├── azure-pipelines.yml
├── Directory.Build.props
└── .globalconfig
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 |
--------------------------------------------------------------------------------
/umbraco-marketplace-readme-umbraco.storageproviders.azureblob.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/umbraco-marketplace-readme-umbraco.storageproviders.azureblob.imagesharp.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/umbraco/Umbraco.StorageProviders/HEAD/icon.png
--------------------------------------------------------------------------------
/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "10.0.100",
4 | "rollForward": "latestFeature"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/examples/Directory.Packages.props:
--------------------------------------------------------------------------------
1 |
Nothing to see, but we could make a lesson to display a person
-------------------------------------------------------------------------------- /examples/Umbraco.StorageProviders.AzureBlob.TestSite/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umbraco/Umbraco.StorageProviders/HEAD/examples/Umbraco.StorageProviders.AzureBlob.TestSite/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/Umbraco.StorageProviders.AzureBlob.TestSite/Views/Partials/Components/LatestBlogPosts/NoContent.cshtml: -------------------------------------------------------------------------------- 1 |Missing image
9 | } 10 | } 11 | -------------------------------------------------------------------------------- /examples/Umbraco.StorageProviders.AzureBlob.TestSite/Views/Blog.cshtml: -------------------------------------------------------------------------------- 1 | @using ContentModels = Umbraco.Cms.Web.Common.PublishedModels 2 | @inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage@Model.FooterDescription
32 | 33 | 34 | @Model.FooterCtacaption 35 | 36 |
28 | Could not render component of type: @(item.Content.ContentType.Alias)
29 |
30 | This likely happened because the partial view @partialViewName could not be found.
31 |