-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #309 from stefannikolei/stefannikolei/nullable/azure
Remove nullable disable from azure
- Loading branch information
Showing
7 changed files
with
46 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 12 additions & 6 deletions
18
src/ImageSharp.Web.Providers.Azure/Caching/AzureBlobStorageCacheOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
// Copyright (c) Six Labors. | ||
// Licensed under the Six Labors Split License. | ||
#nullable disable | ||
|
||
namespace SixLabors.ImageSharp.Web.Caching.Azure; | ||
|
||
/// <summary> | ||
/// Configuration options for the <see cref="AzureBlobStorageCache"/>. | ||
/// </summary> | ||
public class AzureBlobStorageCacheOptions : IAzureBlobContainerClientOptions | ||
public class AzureBlobStorageCacheOptions | ||
{ | ||
/// <inheritdoc/> | ||
public string ConnectionString { get; set; } | ||
/// <summary> | ||
/// Gets or sets the Azure Blob Storage connection string. | ||
/// <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string."/> | ||
/// </summary> | ||
public string ConnectionString { get; set; } = null!; | ||
|
||
/// <inheritdoc/> | ||
public string ContainerName { get; set; } | ||
/// <summary> | ||
/// Gets or sets the Azure Blob Storage container name. | ||
/// Must conform to Azure Blob Storage container naming guidlines. | ||
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#container-names"/> | ||
/// </summary> | ||
public string ContainerName { get; set; } = null!; | ||
} |
24 changes: 0 additions & 24 deletions
24
src/ImageSharp.Web.Providers.Azure/IAzureBlobContainerClientOptions.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/ImageSharp.Web.Providers.Azure/Resolvers/AzureBlobStorageCacheResolver.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters