skip to Main Content

How to move directory in azure and ZIP it using ShareDirectoryClient in azure file share

I am able to move the directory in azure using ShareDirectoryClient successfully. using System; using System.Threading.Tasks; using Azure.Storage.Files.Shares; namespace SO69798149 { class Program { const string MyconnectionString = "DefaultEndpointsProtocol=https;AccountName=account-name;AccountKey=account-key"; const string MyshareName = "share-name"; const string SourceDirectoryName = "source-directory-name"; private…

VIEW QUESTION

coverlet does not create report in azure devops

I am using coverlet.msbuild v3.2.0 coverlet.collector v3.2.0 and dotnet sdk v6.0.402 When I run this test command in powershell (restore and build ran before that) dotnet test --no-build --no-restore --collect:"XPlat Code Coverage" /p:Configuration=$Cfg /p:CollectCoverage=true /p:CoverletOutput=.CodeCoverage --% /p:CoverletOutputFormat="cobertura,opencover" The report files…

VIEW QUESTION
Back To Top
Search