Add Azure Files identity authentication parity with Azure Blob Storage#143
Conversation
| private static async Task<Stream> CopyToSeekableStreamAsync(Stream stream, CancellationToken cancellationToken) { | ||
| var memoryStream = new MemoryStream(); | ||
| await stream.CopyToAsync(memoryStream, 81920, cancellationToken).ConfigureAwait(false); | ||
| memoryStream.Position = 0; | ||
| return memoryStream; |
There was a problem hiding this comment.
I know this sounds like a code smell, but only happens at non-seekable streams
|
My recomendation is also release a v7 preview because of the runtime breaking changes at the blob props. |
|
@robinrodricks I also created |
|
Also, |
|
|
||
| ## What's New | ||
|
|
||
| In 2026, we added: |
| @@ -0,0 +1,41 @@ | |||
| <Project Sdk="Microsoft.NET.Sdk"> | |||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <ProjectReference Include="..\FluentStorage.Azure.Identity\FluentStorage.Azure.Identity.csproj" /> |
There was a problem hiding this comment.
i dont like this but i understand its needed
There was a problem hiding this comment.
Yeah, me neither, but I really need this parity and there is no other way to re-use the source between Blob and Files
lets make a new package |
|
Received with MANY THANKS! Overall, FANTASTIC JOB! a long awaited feature is finally here and I'm excited to release it. Yes, I will accept it, please introduce the features for as well |
|
I'm going to make some changes, before you proceed further pls pull my main branch and then continue your work. |
|
Please suggest improvements to https://github.com/robinrodricks/FluentStorage/wiki/Azure-Blob-Storage#file-shares needed to document the new API. |
Fixes
Issue #142
Issue #110
Description
This PR adds Azure Files auth support using Azure.Identity.