diff --git a/eng/scripts/Language-Settings.ps1 b/eng/scripts/Language-Settings.ps1 index 6d172bcc47d64..a1f54e92853ad 100644 --- a/eng/scripts/Language-Settings.ps1 +++ b/eng/scripts/Language-Settings.ps1 @@ -3,7 +3,7 @@ $LanguageShort = "net" $LanguageDisplayName = ".NET" $PackageRepository = "Nuget" $packagePattern = "*.nupkg" -$MetadataUri = "https://raw.githubusercontent.com/Azure/azure-sdk/master/_data/releases/latest/dotnet-packages.csv" +$MetadataUri = "https://raw.githubusercontent.com/Azure/azure-sdk/main/_data/releases/latest/dotnet-packages.csv" $BlobStorageUrl = "https://azuresdkdocs.blob.core.windows.net/%24web?restype=container&comp=list&prefix=dotnet%2F&delimiter=%2F" function Get-dotnet-PackageInfoFromRepo ($pkgPath, $serviceDirectory) @@ -16,7 +16,7 @@ function Get-dotnet-PackageInfoFromRepo ($pkgPath, $serviceDirectory) } $projectPaths = @(Resolve-Path (Join-Path $projDirPath "*.csproj")) - + if ($projectpaths.Count -ge 1) { $projectPath = $projectPaths[0].path if ($projectPaths.Count -gt 1) { @@ -29,7 +29,7 @@ function Get-dotnet-PackageInfoFromRepo ($pkgPath, $serviceDirectory) if ($projectPath -and (Test-Path $projectPath)) { - $pkgName = Split-Path -Path $projectPath -LeafBase + $pkgName = Split-Path -Path $projectPath -LeafBase $projectData = New-Object -TypeName XML $projectData.load($projectPath) $pkgVersion = Select-XML -Xml $projectData -XPath '/Project/PropertyGroup/Version' @@ -49,7 +49,7 @@ function Get-dotnet-PackageInfoFromRepo ($pkgPath, $serviceDirectory) } # Returns the nuget publish status of a package id and version. -function IsNugetPackageVersionPublished ($pkgId, $pkgVersion) +function IsNugetPackageVersionPublished ($pkgId, $pkgVersion) { $nugetUri = "https://api.nuget.org/v3-flatcontainer/$($pkgId.ToLowerInvariant())/index.json" @@ -76,7 +76,7 @@ function IsNugetPackageVersionPublished ($pkgId, $pkgVersion) } # Parse out package publishing information given a nupkg ZIP format. -function Get-dotnet-PackageInfoFromPackageFile ($pkg, $workingDirectory) +function Get-dotnet-PackageInfoFromPackageFile ($pkg, $workingDirectory) { $workFolder = "$workingDirectory$($pkg.Basename)" $origFolder = Get-Location @@ -94,13 +94,13 @@ function Get-dotnet-PackageInfoFromPackageFile ($pkg, $workingDirectory) $pkgVersion = $packageXML.package.metadata.version $changeLogLoc = @(Get-ChildItem -Path $workFolder -Recurse -Include "CHANGELOG.md")[0] - if ($changeLogLoc) + if ($changeLogLoc) { $releaseNotes = Get-ChangeLogEntryAsString -ChangeLogLocation $changeLogLoc -VersionString $pkgVersion } $readmeContentLoc = @(Get-ChildItem -Path $workFolder -Recurse -Include "README.md")[0] - if ($readmeContentLoc) + if ($readmeContentLoc) { $readmeContent = Get-Content -Raw $readmeContentLoc } @@ -190,7 +190,7 @@ function Get-dotnet-GithubIoDocIndex() function Update-dotnet-CIConfig($pkgs, $ciRepo, $locationInDocRepo, $monikerId=$null) { $csvLoc = (Join-Path -Path $ciRepo -ChildPath $locationInDocRepo) - + if (-not (Test-Path $csvLoc)) { Write-Error "Unable to locate package csv at location $csvLoc, exiting." exit(1) diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/BaseTests.cs b/sdk/cognitiveservices/Vision.ComputerVision/tests/BaseTests.cs index 747b813ac4dda..363e41a7fb73d 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/BaseTests.cs +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/BaseTests.cs @@ -46,7 +46,7 @@ public abstract class BaseTests } } - return $"https://raw.githubusercontent.com/{user}/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/"; + return $"https://raw.githubusercontent.com/{user}/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/"; }); static BaseTests() diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAnalyzeTests/AnalyzeImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAnalyzeTests/AnalyzeImageTest.json index 37ed98cadd18b..1de143aa7afef 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAnalyzeTests/AnalyzeImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAnalyzeTests/AnalyzeImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/analyze?visualFeatures=Adult%2CCategories%2CColor%2CFaces%2CImageType%2CTags&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2FuYWx5emU/dmlzdWFsRmVhdHVyZXM9QWR1bHQlMkNDYXRlZ29yaWVzJTJDQ29sb3IlMkNGYWNlcyUyQ0ltYWdlVHlwZSUyQ1RhZ3MmbW9kZWwtdmVyc2lvbj1sYXRlc3Q=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAreaOfInterestTests/AreaOfInterestImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAreaOfInterestTests/AreaOfInterestImageTest.json index 02e6ac084b559..7b424536dea86 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAreaOfInterestTests/AreaOfInterestImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionAreaOfInterestTests/AreaOfInterestImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/areaOfInterest?model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2FyZWFPZkludGVyZXN0P21vZGVsLXZlcnNpb249bGF0ZXN0", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageInJapaneseTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageInJapaneseTest.json index 1af9f52a08750..7d80af588556f 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageInJapaneseTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageInJapaneseTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/describe?maxCandidates=1&language=ja&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2Rlc2NyaWJlP21heENhbmRpZGF0ZXM9MSZsYW5ndWFnZT1qYSZtb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/dog.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/dog.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageTest.json index 9e2b154d33d34..1443ebc3321de 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDescribeTests/DescribeImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/describe?maxCandidates=2&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2Rlc2NyaWJlP21heENhbmRpZGF0ZXM9MiZtb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/dog.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/dog.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDetectTests/DetectImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDetectTests/DetectImageTest.json index 0e2e9829b7b66..49fea7d224638 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDetectTests/DetectImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDetectTests/DetectImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/detect?model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2RldGVjdD9tb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/satya.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/satya.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeCelebritiesDomainTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeCelebritiesDomainTest.json index 3a9e6fadbc8a7..175d0cca3b5c7 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeCelebritiesDomainTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeCelebritiesDomainTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/models/celebrities/analyze?model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL21vZGVscy9jZWxlYnJpdGllcy9hbmFseXplP21vZGVsLXZlcnNpb249bGF0ZXN0", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/satya.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/satya.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeLandmarksDomainImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeLandmarksDomainImageTest.json index 0e6caabee3e08..41b1589d940f1 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeLandmarksDomainImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionDomainModelTests/AnalyzeLandmarksDomainImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/models/landmarks/analyze?language=pt&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL21vZGVscy9sYW5kbWFya3MvYW5hbHl6ZT9sYW5ndWFnZT1wdCZtb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/spaceneedle.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/spaceneedle.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionOcrTests/OcrImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionOcrTests/OcrImageTest.json index 6b8c59eb7ef36..908fd6ea1bf41 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionOcrTests/OcrImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionOcrTests/OcrImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/ocr?detectOrientation=true&language=de&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL29jcj9kZXRlY3RPcmllbnRhdGlvbj10cnVlJmxhbmd1YWdlPWRlJm1vZGVsLXZlcnNpb249bGF0ZXN0", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/achtung.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/achtung.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionReadTests/ReadTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionReadTests/ReadTest.json index 23bcb265c2fd1..3136f89bf58af 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionReadTests/ReadTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionReadTests/ReadTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/read/analyze?model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL3JlYWQvYW5hbHl6ZT9tb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/signage.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/signage.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionTagTests/TagImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionTagTests/TagImageTest.json index bd4203ef6e672..d520af0b2a23a 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionTagTests/TagImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionTagTests/TagImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/tag?model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL3RhZz9tb2RlbC12ZXJzaW9uPWxhdGVzdA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionThumbmailTests/ThumbnailImageTest.json b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionThumbmailTests/ThumbnailImageTest.json index f82db8b396d30..be72be3bdc5f5 100644 --- a/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionThumbmailTests/ThumbnailImageTest.json +++ b/sdk/cognitiveservices/Vision.ComputerVision/tests/SessionRecords/VisionThumbmailTests/ThumbnailImageTest.json @@ -4,7 +4,7 @@ "RequestUri": "/vision/v3.2/generateThumbnail?width=64&height=64&smartCropping=false&model-version=latest", "EncodedRequestUri": "L3Zpc2lvbi92My4yL2dlbmVyYXRlVGh1bWJuYWlsP3dpZHRoPTY0JmhlaWdodD02NCZzbWFydENyb3BwaW5nPWZhbHNlJm1vZGVsLXZlcnNpb249bGF0ZXN0", "RequestMethod": "POST", - "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", + "RequestBody": "{\r\n \"url\": \"https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/cognitiveservices/Vision.ComputerVision/tests/TestImages/house.jpg\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "" diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/perf/Azure.AI.FormRecognizer.Perf/Infrastructure/FormRecognizerTest.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/perf/Azure.AI.FormRecognizer.Perf/Infrastructure/FormRecognizerTest.cs index 27e7ec5113a45..a7283391d78f1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/perf/Azure.AI.FormRecognizer.Perf/Infrastructure/FormRecognizerTest.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/perf/Azure.AI.FormRecognizer.Perf/Infrastructure/FormRecognizerTest.cs @@ -12,7 +12,7 @@ public abstract class FormRecognizerTest : PerfTest where TO private const string AssetsFolderName = "Assets"; /// The format to generate the GitHub URIs of the files to be used for tests. - private const string FileUriFormat = "https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/{0}/{1}"; + private const string FileUriFormat = "https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/{0}/{1}"; public FormRecognizerTest(TOptions options) : base(options) { diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Infrastructure/FormRecognizerTestEnvironment.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Infrastructure/FormRecognizerTestEnvironment.cs index 02dda1ba79501..3e678aab3568a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Infrastructure/FormRecognizerTestEnvironment.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Infrastructure/FormRecognizerTestEnvironment.cs @@ -48,7 +48,7 @@ public FormRecognizerTestEnvironment() private const string AssetsFolderName = "Assets"; /// The format to generate the GitHub URIs of the files to be used for tests. - private const string FileUriFormat = "https://raw.githubusercontent.com/Azure/azure-sdk-for-net/master/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/{0}/{1}"; + private const string FileUriFormat = "https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/{0}/{1}"; public string ApiKey => GetRecordedVariable(ApiKeyEnvironmentVariableName, options => options.IsSecret()); public string Endpoint => GetRecordedVariable(EndpointEnvironmentVariableName); diff --git a/sdk/storage/Azure.Storage.Blobs.ChangeFeed/src/Azure.Storage.Blobs.ChangeFeed.csproj b/sdk/storage/Azure.Storage.Blobs.ChangeFeed/src/Azure.Storage.Blobs.ChangeFeed.csproj index 294f66fb71e32..ed7df037011a7 100644 --- a/sdk/storage/Azure.Storage.Blobs.ChangeFeed/src/Azure.Storage.Blobs.ChangeFeed.csproj +++ b/sdk/storage/Azure.Storage.Blobs.ChangeFeed/src/Azure.Storage.Blobs.ChangeFeed.csproj @@ -10,7 +10,7 @@ This client library enables working with the Microsoft Azure Storage Change Feed feature to review and monitor changes to an Azure Storage account. For this release see notes - https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs.ChangeFeed/README.md and https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs.ChangeFeed/CHANGELOG.md - in addition to the breaking changes https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs.ChangeFeed/BreakingChanges.txt + in addition to the breaking changes https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Blobs.ChangeFeed/BreakingChanges.txt true