-
-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Azurite): Add in-memory support (#1063)
Co-authored-by: Raphael Strotz <[email protected]> Co-authored-by: Andre Hofmeister <[email protected]>
- Loading branch information
1 parent
ae37ad4
commit 4e20ad9
Showing
4 changed files
with
116 additions
and
46 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
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
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,7 +1,11 @@ | ||
global using System; | ||
global using System.Globalization; | ||
global using System.Linq; | ||
global using System.Threading.Tasks; | ||
global using Azure; | ||
global using Azure.Data.Tables; | ||
global using Azure.Storage.Blobs; | ||
global using Azure.Storage.Queues; | ||
global using DotNet.Testcontainers.Commons; | ||
global using JetBrains.Annotations; | ||
global using Xunit; |