diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff48b7bac974..7873fdc5b6a0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -155,13 +155,10 @@ eng\scripts\Export-API.ps1 tables .NET is using the [ApiCompat tool](https://github.com/dotnet/arcade/tree/master/src/Microsoft.DotNet.ApiCompat) to enforce API compatibility between versions. Builds of GA'ed libraries will fail locally and in CI if there are breaking changes. ### How it works -We use a dummy project called [ApiCompat](https://github.com/Azure/azure-sdk-for-net/tree/master/eng/ApiCompat/ApiCompat.csproj) to enforce API compatibility between the GA'ed libraries and the most recent version available on Nuget. This project includes package references to all GA'ed libraries and to Microsoft.DotNet.ApiCompat. -Each listed library package is restored from Nuget via the package references listed in the `ApiCompat.csproj` file, in combination with the version listed for that package in [eng/Packages.Data.props](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Packages.Data.props). -The `ApiCompatVerification` target defined in `ApiCompat.csproj` is referenced in the [eng/Directory.Build.Data.targets](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Directory.Build.Data.targets) which causes this target to be executed for each csproj that has the `EnableApiCompat` parameter set to true. The `EnableApiCompat` parameter defaults to the value of the `IsShippingClientLibrary` parameter, which is defined in [eng/Directory.Build.Data.props](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Directory.Build.Data.props). For libraries that do not yet have a public package defined in `ApiCompat.csproj` for comparison, set `false` in the csproj. - -### Adding a new GA'ed library -To include add a new GA'ed library in the `ApiCompatVerification` target, add a package reference for the library to the `ApiCompat.csproj` file. You will also need to include the latest GA version of the library in [eng/Packages.Data.props](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Packages.Data.props). -Finally, include the `ApiCompat.csproj` in your solution so that the project will get automatically restored in Visual Studio. +We use a dummy project called [ApiCompat](https://github.com/Azure/azure-sdk-for-net/tree/master/eng/ApiCompat/ApiCompat.csproj) to enforce API compatibility between the GA'ed libraries and the most recent version available on Nuget. This project includes package references to the GA'ed library and to Microsoft.DotNet.ApiCompat. +Each library needs to provide a `ApiCompatVersion` property which is set to the last GA'ed version of the library which is used to compare APIs with the current to ensure no breaks +have been introduced. +The `ApiCompatVerification` target defined in `ApiCompat.csproj` is referenced in the [eng/Directory.Build.Data.targets](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Directory.Build.Data.targets) which causes this target to be executed for each csproj that has the `ApiCompatVersion` property set. For libraries that wish to disable the APICompat check they can remove the `ApiCompatVersion` property from their project. Our version bump automation will automatically add or increment the `ApiCompatVersion` property to the project when it detects that the version it is changing was a GA version which usually indicates that we just shipped that GA version and so it should be the new baseline for api checks. ### Releasing a new version of a GA'ed libary Since the [eng/Packages.Data.props](https://github.com/Azure/azure-sdk-for-net/blob/master/eng/Packages.Data.props) is currently maintained manually, you will need to update the version number for your library in this file when releasing a new version. diff --git a/eng/ApiCompat/ApiCompat.csproj b/eng/ApiCompat/ApiCompat.csproj index e72e1c7821f8..29384b8ee3f5 100644 --- a/eng/ApiCompat/ApiCompat.csproj +++ b/eng/ApiCompat/ApiCompat.csproj @@ -1,41 +1,31 @@  - + eng/Directory.Build.Data.targets file which causes this target to be executed for each csproj that has an ApiCompatVersion set. + --> netstandard2.0 true - $(IntermediateOutputPath)/$(TargetPackageName) - + + - - - - - - - - - - - - - - - - - - - - - + + + + + + %(ResolvedCompileFileDefinitions.Identity) @@ -46,8 +36,6 @@ <_DependencyDirectories Include="$(TargetOutputPath)" /> - \ No newline at end of file diff --git a/eng/Directory.Build.Data.props b/eng/Directory.Build.Data.props index 24564e371241..08aa9783f18c 100644 --- a/eng/Directory.Build.Data.props +++ b/eng/Directory.Build.Data.props @@ -46,7 +46,6 @@ true true true - true @@ -143,10 +142,4 @@ - - - - false - - diff --git a/eng/Directory.Build.Data.targets b/eng/Directory.Build.Data.targets index 5c175f79409f..eecd100f9bc5 100644 --- a/eng/Directory.Build.Data.targets +++ b/eng/Directory.Build.Data.targets @@ -83,11 +83,6 @@ - - - - - true AzSdk.reference.targets @@ -164,7 +159,7 @@ - + @@ -179,10 +174,13 @@ Text="When UseProjectReferenceToAzureClients=true all Azure.* references should be Project References, but the following are not [@(ShouldBeProjectReference)]" /> - + diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 21d2a9696739..b579c6bbcfe3 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -56,7 +56,6 @@ - @@ -129,7 +128,7 @@ - + @@ -151,7 +150,7 @@ - + diff --git a/eng/scripts/Update-PkgVersion.ps1 b/eng/scripts/Update-PkgVersion.ps1 index 2d7a28342cb6..0a253ae8782e 100644 --- a/eng/scripts/Update-PkgVersion.ps1 +++ b/eng/scripts/Update-PkgVersion.ps1 @@ -35,54 +35,56 @@ Update-PkgVersion.ps1 -ServiceDirectory cognitiveservices -PackageName Microsoft [CmdletBinding()] Param ( - [ValidateNotNullOrEmpty()] - [string] $RepoRoot = "${PSScriptRoot}/../..", - [Parameter(Mandatory=$True)] - [string] $ServiceDirectory, - [Parameter(Mandatory=$True)] - [string] $PackageName, - [string] $PackageDirName, - [string] $NewVersionString + [ValidateNotNullOrEmpty()] + [string] $RepoRoot = "${PSScriptRoot}/../..", + [Parameter(Mandatory=$True)] + [string] $ServiceDirectory, + [Parameter(Mandatory=$True)] + [string] $PackageName, + [string] $PackageDirName, + [string] $NewVersionString ) . ${PSScriptRoot}\..\common\scripts\SemVer.ps1 +# Obtain Current Package Version +if ([System.String]::IsNullOrEmpty($PackageDirName)) { $PackageDirName = $PackageName } +$changelogPath = Join-Path $RepoRoot "sdk" $ServiceDirectory $PackageDirName "CHANGELOG.md" +$csprojPath = Join-Path $RepoRoot "sdk" $ServiceDirectory $PackageDirName "src" "${PackageName}.csproj" +$csproj = new-object xml +$csproj.PreserveWhitespace = $true +$csproj.Load($csprojPath) +$propertyGroup = ($csproj | Select-Xml "Project/PropertyGroup/Version").Node.ParentNode +$packageVersion = $propertyGroup.Version + +$packageSemVer = [AzureEngSemanticVersion]::new($packageVersion) +$packageOldSemVer = [AzureEngSemanticVersion]::new($packageVersion) +Write-Host "Current Version: ${PackageVersion}" + +if ([System.String]::IsNullOrEmpty($NewVersionString)) { + $packageSemVer.IncrementAndSetToPrerelease() + + & "${PSScriptRoot}/../common/Update-Change-Log.ps1" -Version $packageSemVer.ToString() -ChangeLogPath $changeLogPath -Unreleased $true +} +else { + $packageSemVer = [AzureEngSemanticVersion]::new($NewVersionString) -# Updated Version in csproj and changelog using computed or set NewVersionString -function Update-Version([AzureEngSemanticVersion]$SemVer, $Unreleased=$True, $ReplaceVersion=$False) -{ - Write-Verbose "New Version: ${NewPackageVersion}" - if ($SemVer.HasValidPrereleaseLabel() -ne $true){ - Write-Error "Invalid prerelease label" - exit 1 - } - - ${PackageVersion}.Node.InnerText = $SemVer.ToString() - $CsprojData.Save($PackageCsprojPath) - - # Increment Version in ChangeLog file - & "${PSScriptRoot}/../common/Update-Change-Log.ps1" -Version $SemVer.ToString() -ChangeLogPath $ChangelogPath -Unreleased $Unreleased -ReplaceVersion $ReplaceVersion + & "${PSScriptRoot}/../common/Update-Change-Log.ps1" -Version $packageSemVer.ToString() -ChangeLogPath $changeLogPath -Unreleased $false -ReplaceVersion $true } -# Obtain Current Package Version -if ([System.String]::IsNullOrEmpty($PackageDirName)) {$PackageDirName = $PackageName} -$CsprojData = New-Object -TypeName XML -$CsprojData.PreserveWhitespace = $True -$PackageCsprojPath = Join-Path $RepoRoot "sdk" $ServiceDirectory $PackageDirName "src" "${PackageName}.csproj" -$ChangelogPath = Join-Path $RepoRoot "sdk" $ServiceDirectory $PackageDirName "CHANGELOG.md" -$CsprojData.Load($PackageCsprojPath) -$PackageVersion = Select-XML -Xml $CsprojData -XPath '/Project/PropertyGroup/Version' - -if ([System.String]::IsNullOrEmpty($NewVersionString)) -{ - $SemVer = [AzureEngSemanticVersion]::new($PackageVersion) - Write-Verbose "Current Version: ${PackageVersion}" - - $SemVer.IncrementAndSetToPrerelease() - Update-Version -SemVer $SemVer +Write-Host "New Version: ${packageSemVer}" +if ($packageSemVer.HasValidPrereleaseLabel() -ne $true){ + Write-Error "Invalid prerelease label" + exit 1 } -else -{ - # Use specified VersionString - $SemVer = [AzureEngSemanticVersion]::new($NewVersionString) - Update-Version -SemVer $SemVer -Unreleased $False -ReplaceVersion $True + +if (!$packageOldSemVer.IsPrerelease) { + if (!$propertyGroup.ApiCompatVersion) { + $propertyGroup.InsertAfter($csproj.CreateElement("ApiCompatVersion"), $propertyGroup["Version"]) | Out-Null + $whitespace = $propertyGroup["Version"].PreviousSibling + $propertyGroup.InsertAfter($whitespace.Clone(), $propertyGroup["Version"]) | Out-Null + } + $propertyGroup.ApiCompatVersion = $packageOldSemVer.ToString() } + +$propertyGroup.Version = $packageSemVer.ToString() +$csproj.Save($csprojPath) \ No newline at end of file diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/Azure.Data.AppConfiguration.sln b/sdk/appconfiguration/Azure.Data.AppConfiguration/Azure.Data.AppConfiguration.sln index 4d3f5c86dc81..d99c49d4d45e 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/Azure.Data.AppConfiguration.sln +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/Azure.Data.AppConfiguration.sln @@ -13,9 +13,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Data.AppConfiguration EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Identity", "..\..\identity\Azure.Identity\src\Azure.Identity.csproj", "{042736B0-D082-4366-BD2B-02D49FEC6073}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiCompat", "..\..\..\eng\ApiCompat\ApiCompat.csproj", "{CB965318-37F5-4FD9-ACE4-08634BAC833D}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{1FC8A3EA-3C0D-4DDF-B710-A7091F2CEBB1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{1FC8A3EA-3C0D-4DDF-B710-A7091F2CEBB1}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -43,10 +41,6 @@ Global {042736B0-D082-4366-BD2B-02D49FEC6073}.Debug|Any CPU.Build.0 = Debug|Any CPU {042736B0-D082-4366-BD2B-02D49FEC6073}.Release|Any CPU.ActiveCfg = Release|Any CPU {042736B0-D082-4366-BD2B-02D49FEC6073}.Release|Any CPU.Build.0 = Release|Any CPU - {CB965318-37F5-4FD9-ACE4-08634BAC833D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CB965318-37F5-4FD9-ACE4-08634BAC833D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CB965318-37F5-4FD9-ACE4-08634BAC833D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CB965318-37F5-4FD9-ACE4-08634BAC833D}.Release|Any CPU.Build.0 = Release|Any CPU {1FC8A3EA-3C0D-4DDF-B710-A7091F2CEBB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1FC8A3EA-3C0D-4DDF-B710-A7091F2CEBB1}.Debug|Any CPU.Build.0 = Debug|Any CPU {1FC8A3EA-3C0D-4DDF-B710-A7091F2CEBB1}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md b/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md index 2508507c1f33..e8b601abdcef 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md @@ -1,5 +1,8 @@ # Release History +## 1.1.0-preview.1 (Unreleased) + + ## 1.0.0 ### Breaking changes diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj b/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj index 4fa06e7c7530..c328b9bed2ff 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj @@ -1,9 +1,10 @@ - + This is the Microsoft Azure Application Configuration Service client library Microsoft Azure.Data.AppConfiguration client library - 1.0.0 + 1.1.0-preview.1 + 1.0.0 Microsoft Azure Application Configuration;$(PackageCommonTags) $(RequiredTargetFrameworks) $(NoWarn);3021 diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/tests/ConfigurationMockTests.cs b/sdk/appconfiguration/Azure.Data.AppConfiguration/tests/ConfigurationMockTests.cs index 2a209513b394..ef39bf5b205d 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/tests/ConfigurationMockTests.cs +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/tests/ConfigurationMockTests.cs @@ -834,7 +834,8 @@ private void AssertContent(byte[] expected, MockRequest request, bool compareAsS private void AssertRequestCommon(MockRequest request) { Assert.True(request.Headers.TryGetValue("User-Agent", out var value)); - StringAssert.Contains("azsdk-net-Data.AppConfiguration/1.0.0", value); + Version version = typeof(ConfigurationClient).Assembly.GetName().Version; + StringAssert.Contains($"azsdk-net-Data.AppConfiguration/{version.Major}.{version.Minor}.{version.Build}", value); } private static ConfigurationSetting CreateSetting(int i) diff --git a/sdk/core/Azure.Core.Experimental/src/Azure.Core.Experimental.csproj b/sdk/core/Azure.Core.Experimental/src/Azure.Core.Experimental.csproj index e17a0e2301e0..0ed6573a5210 100644 --- a/sdk/core/Azure.Core.Experimental/src/Azure.Core.Experimental.csproj +++ b/sdk/core/Azure.Core.Experimental/src/Azure.Core.Experimental.csproj @@ -6,7 +6,6 @@ Microsoft Azure Client Pipeline enable $(RequiredTargetFrameworks) - false $(NoWarn);AZC0001;AZC0012 @@ -14,7 +13,7 @@ - + diff --git a/sdk/core/Azure.Core/Azure.Core.All.sln b/sdk/core/Azure.Core/Azure.Core.All.sln index e13c65fe0e30..2fe9dc0f96cb 100644 --- a/sdk/core/Azure.Core/Azure.Core.All.sln +++ b/sdk/core/Azure.Core/Azure.Core.All.sln @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30011.22 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiCompat", "..\..\..\eng\ApiCompat\ApiCompat.csproj", "{B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.AI.FormRecognizer", "..\..\formrecognizer\Azure.AI.FormRecognizer\src\Azure.AI.FormRecognizer.csproj", "{8B0A0A34-5E5D-43D6-9F3E-AF1181EA80A9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.AI.FormRecognizer.Tests", "..\..\formrecognizer\Azure.AI.FormRecognizer\tests\Azure.AI.FormRecognizer.Tests.csproj", "{09101D6D-0E56-41FA-B9C4-07FE54D9E79C}" @@ -129,45 +127,45 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.Azure. EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{BB8D02AF-F5C3-4D85-8B3E-884BFB820AB3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.Experimental", "..\Azure.Core.Experimental\src\Azure.Core.Experimental.csproj", "{D667DC89-2570-47AB-B6BA-FB977F64F59F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.Experimental", "..\Azure.Core.Experimental\src\Azure.Core.Experimental.csproj", "{D667DC89-2570-47AB-B6BA-FB977F64F59F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.Experimental.Tests", "..\Azure.Core.Experimental\tests\Azure.Core.Experimental.Tests.csproj", "{E17E480E-E791-4EB5-9C85-7949CF259A87}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.Experimental.Tests", "..\Azure.Core.Experimental\tests\Azure.Core.Experimental.Tests.csproj", "{E17E480E-E791-4EB5-9C85-7949CF259A87}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.DigitalTwins.Core", "..\..\digitaltwins\Azure.DigitalTwins.Core\src\Azure.DigitalTwins.Core.csproj", "{91DD7625-A31C-4122-9692-5210D635E477}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.DigitalTwins.Core", "..\..\digitaltwins\Azure.DigitalTwins.Core\src\Azure.DigitalTwins.Core.csproj", "{91DD7625-A31C-4122-9692-5210D635E477}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.DigitalTwins.Core.Tests", "..\..\digitaltwins\Azure.DigitalTwins.Core\tests\Azure.DigitalTwins.Core.Tests.csproj", "{07F28197-E2DE-4DDD-A1A0-1696FBDB8E6C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.DigitalTwins.Core.Tests", "..\..\digitaltwins\Azure.DigitalTwins.Core\tests\Azure.DigitalTwins.Core.Tests.csproj", "{07F28197-E2DE-4DDD-A1A0-1696FBDB8E6C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Graph.Rbac", "..\..\testcommon\Azure.Graph.Rbac\src\Azure.Graph.Rbac.csproj", "{804834A9-209B-44BA-9634-349342000112}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Graph.Rbac", "..\..\testcommon\Azure.Graph.Rbac\src\Azure.Graph.Rbac.csproj", "{804834A9-209B-44BA-9634-349342000112}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.AppConfiguration", "..\..\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Azure.ResourceManager.AppConfiguration.csproj", "{ECCCB3AB-E922-4298-AC8F-DB62321BA762}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.AppConfiguration", "..\..\appconfiguration\Azure.ResourceManager.AppConfiguration\src\Azure.ResourceManager.AppConfiguration.csproj", "{ECCCB3AB-E922-4298-AC8F-DB62321BA762}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.AppConfiguration.Tests", "..\..\appconfiguration\Azure.ResourceManager.AppConfiguration\tests\Azure.ResourceManager.AppConfiguration.Tests.csproj", "{466EE435-B21A-4642-A355-5752F0007691}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.AppConfiguration.Tests", "..\..\appconfiguration\Azure.ResourceManager.AppConfiguration\tests\Azure.ResourceManager.AppConfiguration.Tests.csproj", "{466EE435-B21A-4642-A355-5752F0007691}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Compute", "..\..\compute\Azure.ResourceManager.Compute\src\Azure.ResourceManager.Compute.csproj", "{25441F2C-796F-4F06-922F-E39A2A8A68CF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Compute", "..\..\compute\Azure.ResourceManager.Compute\src\Azure.ResourceManager.Compute.csproj", "{25441F2C-796F-4F06-922F-E39A2A8A68CF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Compute.Tests", "..\..\compute\Azure.ResourceManager.Compute\tests\Azure.ResourceManager.Compute.Tests.csproj", "{2B9978B6-3E34-4D49-B544-3C23574B1C79}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Compute.Tests", "..\..\compute\Azure.ResourceManager.Compute\tests\Azure.ResourceManager.Compute.Tests.csproj", "{2B9978B6-3E34-4D49-B544-3C23574B1C79}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.EventHubs", "..\..\eventhub\Azure.ResourceManager.EventHubs\src\Azure.ResourceManager.EventHubs.csproj", "{3E3B12AD-2993-4A64-9B10-5F648039B54D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.EventHubs", "..\..\eventhub\Azure.ResourceManager.EventHubs\src\Azure.ResourceManager.EventHubs.csproj", "{3E3B12AD-2993-4A64-9B10-5F648039B54D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.EventHubs.Tests", "..\..\eventhub\Azure.ResourceManager.EventHubs\tests\Azure.ResourceManager.EventHubs.Tests.csproj", "{0E2E0392-176A-4175-8EFD-1B892C77584B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.EventHubs.Tests", "..\..\eventhub\Azure.ResourceManager.EventHubs\tests\Azure.ResourceManager.EventHubs.Tests.csproj", "{0E2E0392-176A-4175-8EFD-1B892C77584B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.KeyVault", "..\..\keyvault\Azure.ResourceManager.KeyVault\src\Azure.ResourceManager.KeyVault.csproj", "{AD53DDDE-EE11-461B-B257-636F4C7DF7CB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.KeyVault", "..\..\keyvault\Azure.ResourceManager.KeyVault\src\Azure.ResourceManager.KeyVault.csproj", "{AD53DDDE-EE11-461B-B257-636F4C7DF7CB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.KeyVault.Tests", "..\..\keyvault\Azure.ResourceManager.KeyVault\tests\Azure.ResourceManager.KeyVault.Tests.csproj", "{DE87BF6A-4424-4C8C-83E7-286176E4A0D7}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.KeyVault.Tests", "..\..\keyvault\Azure.ResourceManager.KeyVault\tests\Azure.ResourceManager.KeyVault.Tests.csproj", "{DE87BF6A-4424-4C8C-83E7-286176E4A0D7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Network", "..\..\network\Azure.ResourceManager.Network\src\Azure.ResourceManager.Network.csproj", "{D7BCCC21-9700-454B-AB58-1A99A502309D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Network", "..\..\network\Azure.ResourceManager.Network\src\Azure.ResourceManager.Network.csproj", "{D7BCCC21-9700-454B-AB58-1A99A502309D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Network.Tests", "..\..\network\Azure.ResourceManager.Network\tests\Azure.ResourceManager.Network.Tests.csproj", "{0B3FEA8B-91A7-4621-8F95-5A81AFF0D7E2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Network.Tests", "..\..\network\Azure.ResourceManager.Network\tests\Azure.ResourceManager.Network.Tests.csproj", "{0B3FEA8B-91A7-4621-8F95-5A81AFF0D7E2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Resources", "..\..\resources\Azure.ResourceManager.Resources\src\Azure.ResourceManager.Resources.csproj", "{9C361667-DD1F-4E15-B974-9BF3B434E12D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Resources", "..\..\resources\Azure.ResourceManager.Resources\src\Azure.ResourceManager.Resources.csproj", "{9C361667-DD1F-4E15-B974-9BF3B434E12D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Resources.Tests", "..\..\resources\Azure.ResourceManager.Resources\tests\Azure.ResourceManager.Resources.Tests.csproj", "{52ABC8A3-DEF5-4E41-B5F8-212925A6A51E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Resources.Tests", "..\..\resources\Azure.ResourceManager.Resources\tests\Azure.ResourceManager.Resources.Tests.csproj", "{52ABC8A3-DEF5-4E41-B5F8-212925A6A51E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Storage", "..\..\storage\Azure.ResourceManager.Storage\src\Azure.ResourceManager.Storage.csproj", "{DEC0ECED-67D6-49FC-86A6-C680C34F6142}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Storage", "..\..\storage\Azure.ResourceManager.Storage\src\Azure.ResourceManager.Storage.csproj", "{DEC0ECED-67D6-49FC-86A6-C680C34F6142}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.ResourceManager.Storage.Tests", "..\..\storage\Azure.ResourceManager.Storage\tests\Azure.ResourceManager.Storage.Tests.csproj", "{A1B7E19A-B4C5-4EAD-9526-9F05E6C74D4F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Storage.Tests", "..\..\storage\Azure.ResourceManager.Storage\tests\Azure.ResourceManager.Storage.Tests.csproj", "{A1B7E19A-B4C5-4EAD-9526-9F05E6C74D4F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DigitalTwinsClientSample", "..\..\digitaltwins\Azure.DigitalTwins.Core\samples\DigitalTwinsClientSample\DigitalTwinsClientSample.csproj", "{635AF2FC-2E5D-4335-8F8D-72F25BD61C95}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalTwinsClientSample", "..\..\digitaltwins\Azure.DigitalTwins.Core\samples\DigitalTwinsClientSample\DigitalTwinsClientSample.csproj", "{635AF2FC-2E5D-4335-8F8D-72F25BD61C95}" EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution @@ -187,18 +185,6 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|x64.ActiveCfg = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|x64.Build.0 = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|x86.ActiveCfg = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Debug|x86.Build.0 = Debug|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|Any CPU.Build.0 = Release|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|x64.ActiveCfg = Release|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|x64.Build.0 = Release|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|x86.ActiveCfg = Release|Any CPU - {B0D5B7D9-F4E7-4B78-80FF-4189965E11BE}.Release|x86.Build.0 = Release|Any CPU {8B0A0A34-5E5D-43D6-9F3E-AF1181EA80A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8B0A0A34-5E5D-43D6-9F3E-AF1181EA80A9}.Debug|Any CPU.Build.0 = Debug|Any CPU {8B0A0A34-5E5D-43D6-9F3E-AF1181EA80A9}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -679,18 +665,6 @@ Global {EA651D86-70EE-4F32-AF1D-E5EB85ACF79F}.Release|x64.Build.0 = Release|Any CPU {EA651D86-70EE-4F32-AF1D-E5EB85ACF79F}.Release|x86.ActiveCfg = Release|Any CPU {EA651D86-70EE-4F32-AF1D-E5EB85ACF79F}.Release|x86.Build.0 = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|x64.ActiveCfg = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|x64.Build.0 = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|x86.ActiveCfg = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Debug|x86.Build.0 = Debug|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|Any CPU.Build.0 = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|x64.ActiveCfg = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|x64.Build.0 = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|x86.ActiveCfg = Release|Any CPU - {908FBA6A-12B2-44DA-BCFB-11750B613FFA}.Release|x86.Build.0 = Release|Any CPU {83DC827C-9AD6-4C76-883F-53AB4A027E82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {83DC827C-9AD6-4C76-883F-53AB4A027E82}.Debug|Any CPU.Build.0 = Debug|Any CPU {83DC827C-9AD6-4C76-883F-53AB4A027E82}.Debug|x64.ActiveCfg = Debug|Any CPU diff --git a/sdk/core/Azure.Core/src/Azure.Core.csproj b/sdk/core/Azure.Core/src/Azure.Core.csproj index 5b97b75e4478..ce67a168e4fb 100644 --- a/sdk/core/Azure.Core/src/Azure.Core.csproj +++ b/sdk/core/Azure.Core/src/Azure.Core.csproj @@ -3,6 +3,7 @@ This is the implementation of the Azure Client Pipeline Microsoft Azure Client Pipeline 1.3.0-preview.1 + 1.2.2 Microsoft Azure Client Pipeline enable $(DefineConstants);AZURE_NULLABLE diff --git a/sdk/digitaltwins/Azure.DigitalTwins.Core/src/Azure.DigitalTwins.Core.csproj b/sdk/digitaltwins/Azure.DigitalTwins.Core/src/Azure.DigitalTwins.Core.csproj index 189ba7945272..973767741a12 100644 --- a/sdk/digitaltwins/Azure.DigitalTwins.Core/src/Azure.DigitalTwins.Core.csproj +++ b/sdk/digitaltwins/Azure.DigitalTwins.Core/src/Azure.DigitalTwins.Core.csproj @@ -4,7 +4,6 @@ Digital Twins SDK $(RequiredTargetFrameworks) - false true $(NoWarn);CA1812 diff --git a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj index 6f33a3b1ab15..dae3bb4bce69 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj +++ b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj @@ -2,6 +2,7 @@ Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This library extends its Event Processor with durable storage for checkpoint information using Azure Blob storage. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/ 5.2.0-preview.1 + 5.1.0 Azure;Event Hubs;EventHubs;.NET;Event Processor;EventProcessor;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj b/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj index 677b1d569053..5021316959ec 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj +++ b/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj @@ -2,6 +2,7 @@ Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This client library allows for both publishing and consuming events using Azure Event Hubs. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/ 5.2.0-preview.1 + 5.1.0 Azure;Event Hubs;EventHubs;.NET;AMQP;IoT;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/extensions/Azure.Extensions.AspNetCore.Configuration.Secrets/src/Azure.Extensions.AspNetCore.Configuration.Secrets.csproj b/sdk/extensions/Azure.Extensions.AspNetCore.Configuration.Secrets/src/Azure.Extensions.AspNetCore.Configuration.Secrets.csproj index 00009ee001b2..cfeb5fefe117 100644 --- a/sdk/extensions/Azure.Extensions.AspNetCore.Configuration.Secrets/src/Azure.Extensions.AspNetCore.Configuration.Secrets.csproj +++ b/sdk/extensions/Azure.Extensions.AspNetCore.Configuration.Secrets/src/Azure.Extensions.AspNetCore.Configuration.Secrets.csproj @@ -5,7 +5,7 @@ $(RequiredTargetFrameworks) $(PackageTags);azure;keyvault 1.1.0-preview.1 - false + 1.0.0 $(NoWarn);AZC0001;AZC0102 true diff --git a/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Blobs/src/Azure.Extensions.AspNetCore.DataProtection.Blobs.csproj b/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Blobs/src/Azure.Extensions.AspNetCore.DataProtection.Blobs.csproj index 835e8afd7ff3..1a405d1c7775 100644 --- a/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Blobs/src/Azure.Extensions.AspNetCore.DataProtection.Blobs.csproj +++ b/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Blobs/src/Azure.Extensions.AspNetCore.DataProtection.Blobs.csproj @@ -5,7 +5,7 @@ Microsoft Azure Blob storage support as key store (https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/implementation/key-storage-providers). aspnetcore;dataprotection;azure;blob;key store 1.1.0-preview.1 - false + 1.0.0 true $(NoWarn);AZC0102 diff --git a/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Keys/src/Azure.Extensions.AspNetCore.DataProtection.Keys.csproj b/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Keys/src/Azure.Extensions.AspNetCore.DataProtection.Keys.csproj index c41aa83db243..a96ce3f4e3b3 100644 --- a/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Keys/src/Azure.Extensions.AspNetCore.DataProtection.Keys.csproj +++ b/sdk/extensions/Azure.Extensions.AspNetCore.DataProtection.Keys/src/Azure.Extensions.AspNetCore.DataProtection.Keys.csproj @@ -4,7 +4,7 @@ Microsoft Azure Key Vault key encryption support. aspnetcore;dataprotection;azure;keyvault 1.1.0-preview.1 - false + 1.0.0 true $(NoWarn);AZC0102 diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Azure.AI.FormRecognizer.csproj b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Azure.AI.FormRecognizer.csproj index 497ac32fb4ef..6f2d7dcea86b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Azure.AI.FormRecognizer.csproj +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Azure.AI.FormRecognizer.csproj @@ -5,7 +5,6 @@ 1.0.0-preview.4 Microsoft Azure Form Recognizer $(RequiredTargetFrameworks) - false false diff --git a/sdk/identity/Azure.Identity/Azure.Identity.sln b/sdk/identity/Azure.Identity/Azure.Identity.sln index 79e3370be744..886b3573f518 100644 --- a/sdk/identity/Azure.Identity/Azure.Identity.sln +++ b/sdk/identity/Azure.Identity/Azure.Identity.sln @@ -15,9 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution README.md = README.md EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiCompat", "..\..\..\eng\ApiCompat\ApiCompat.csproj", "{FF91A707-7A2D-4D6D-A785-B75CBBB7B2C9}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{DBE8A141-33F2-489A-A228-B2C919E10C03}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{DBE8A141-33F2-489A-A228-B2C919E10C03}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -37,10 +35,6 @@ Global {CD0BE1AA-F99E-48E7-9FFD-F1B288E62B4F}.Debug|Any CPU.Build.0 = Debug|Any CPU {CD0BE1AA-F99E-48E7-9FFD-F1B288E62B4F}.Release|Any CPU.ActiveCfg = Release|Any CPU {CD0BE1AA-F99E-48E7-9FFD-F1B288E62B4F}.Release|Any CPU.Build.0 = Release|Any CPU - {FF91A707-7A2D-4D6D-A785-B75CBBB7B2C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FF91A707-7A2D-4D6D-A785-B75CBBB7B2C9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FF91A707-7A2D-4D6D-A785-B75CBBB7B2C9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FF91A707-7A2D-4D6D-A785-B75CBBB7B2C9}.Release|Any CPU.Build.0 = Release|Any CPU {DBE8A141-33F2-489A-A228-B2C919E10C03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DBE8A141-33F2-489A-A228-B2C919E10C03}.Debug|Any CPU.Build.0 = Debug|Any CPU {DBE8A141-33F2-489A-A228-B2C919E10C03}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/sdk/identity/Azure.Identity/src/Azure.Identity.csproj b/sdk/identity/Azure.Identity/src/Azure.Identity.csproj index 6f1812e8d46f..fcdbef882c11 100644 --- a/sdk/identity/Azure.Identity/src/Azure.Identity.csproj +++ b/sdk/identity/Azure.Identity/src/Azure.Identity.csproj @@ -3,6 +3,7 @@ This is the implementation of the Azure SDK Client Library for Azure Identity Microsoft Azure.Identity Component 1.2.0-preview.5 + 1.1.1 Microsoft Azure Identity;$(PackageCommonTags) $(RequiredTargetFrameworks) $(NoWarn);3021 diff --git a/sdk/keyvault/Azure.Security.KeyVault.Administration/src/Azure.Security.KeyVault.Administration.csproj b/sdk/keyvault/Azure.Security.KeyVault.Administration/src/Azure.Security.KeyVault.Administration.csproj index 15013c57703a..e978470c4365 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Administration/src/Azure.Security.KeyVault.Administration.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Administration/src/Azure.Security.KeyVault.Administration.csproj @@ -6,7 +6,6 @@ 4.1.0-preview.1 Microsoft Azure Key Vault Administration;$(PackageCommonTags) $(RequiredTargetFrameworks) - false $(NoWarn);3021;CA1812 diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj index 58cd46e5ed0f..34d8a16c92a8 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj @@ -4,6 +4,7 @@ This is the Microsoft Azure Key Vault Certificates client library Microsoft Azure.Security.KeyVault.Certificates client library 4.1.0-preview.2 + 4.0.2 Microsoft Azure Key Vault Certificates;$(PackageCommonTags) $(RequiredTargetFrameworks) $(NoWarn);3021 diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj index f556b0e6a993..d82b43d1ae12 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj @@ -4,6 +4,7 @@ This is the Microsoft Azure Key Vault Keys client library Microsoft Azure.Security.KeyVault.Keys client library 4.1.0-preview.2 + 4.0.3 Microsoft Azure Key Vault Keys;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj index 826db95bf575..7438334d9690 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj @@ -4,6 +4,7 @@ This is the Microsoft Azure Key Vault Secrets client library Microsoft Azure.Security.KeyVault.Secrets client library 4.1.0-preview.2 + 4.0.3 Microsoft Azure Key Vault Secrets;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/keyvault/Azure.Security.KeyVault.sln b/sdk/keyvault/Azure.Security.KeyVault.sln index 3a04f29c73d9..9a4a1669c5b3 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.sln +++ b/sdk/keyvault/Azure.Security.KeyVault.sln @@ -23,8 +23,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Security.KeyVault.Cer EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Azure.Security.KeyVault.Shared.Tests", "Azure.Security.KeyVault.Shared\tests\Azure.Security.KeyVault.Shared.Tests.shproj", "{1AFA2644-A1D9-419F-B87D-9B519B673F24}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiCompat", "..\..\eng\ApiCompat\ApiCompat.csproj", "{A0C00A76-5F21-4664-A7B1-BE2DA201BF6E}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{117730A7-49B1-4608-9A4C-77469BA5372F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Security.KeyVault.Administration", "Azure.Security.KeyVault.Administration\src\Azure.Security.KeyVault.Administration.csproj", "{EE1064ED-C892-4763-B8C9-9BE2A768251B}" @@ -81,10 +79,6 @@ Global {B404190B-C1D4-4655-99D4-45CB6532806B}.Debug|Any CPU.Build.0 = Debug|Any CPU {B404190B-C1D4-4655-99D4-45CB6532806B}.Release|Any CPU.ActiveCfg = Release|Any CPU {B404190B-C1D4-4655-99D4-45CB6532806B}.Release|Any CPU.Build.0 = Release|Any CPU - {A0C00A76-5F21-4664-A7B1-BE2DA201BF6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A0C00A76-5F21-4664-A7B1-BE2DA201BF6E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A0C00A76-5F21-4664-A7B1-BE2DA201BF6E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A0C00A76-5F21-4664-A7B1-BE2DA201BF6E}.Release|Any CPU.Build.0 = Release|Any CPU {117730A7-49B1-4608-9A4C-77469BA5372F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {117730A7-49B1-4608-9A4C-77469BA5372F}.Debug|Any CPU.Build.0 = Debug|Any CPU {117730A7-49B1-4608-9A4C-77469BA5372F}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/sdk/search/Azure.Search.Documents/src/Azure.Search.Documents.csproj b/sdk/search/Azure.Search.Documents/src/Azure.Search.Documents.csproj index 20c1f534ab99..9b48e34f714a 100644 --- a/sdk/search/Azure.Search.Documents/src/Azure.Search.Documents.csproj +++ b/sdk/search/Azure.Search.Documents/src/Azure.Search.Documents.csproj @@ -10,9 +10,6 @@ Azure Cognitive Search;Azure Search Documents;Azure Search;Search;Cognitive;Search Engine;Azure $(RequiredTargetFrameworks) - - - false $(NoWarn);AZC0007;AZC0004;AZC0001 diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Azure.Messaging.ServiceBus.csproj b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Azure.Messaging.ServiceBus.csproj index fd2191b66995..0040971852b1 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Azure.Messaging.ServiceBus.csproj +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Azure.Messaging.ServiceBus.csproj @@ -4,7 +4,6 @@ 7.0.0-preview.4 Azure;Service Bus;ServiceBus;.NET;AMQP;$(PackageCommonTags) $(RequiredTargetFrameworks) - false diff --git a/sdk/storage/Azure.Storage.Blobs.Batch/src/Azure.Storage.Blobs.Batch.csproj b/sdk/storage/Azure.Storage.Blobs.Batch/src/Azure.Storage.Blobs.Batch.csproj index fd0c4e827490..6fad93ba3edc 100644 --- a/sdk/storage/Azure.Storage.Blobs.Batch/src/Azure.Storage.Blobs.Batch.csproj +++ b/sdk/storage/Azure.Storage.Blobs.Batch/src/Azure.Storage.Blobs.Batch.csproj @@ -5,6 +5,7 @@ Microsoft Azure.Storage.Blobs.Batch client library 12.3.0-preview.1 + 12.2.1 BlobSDK;$(DefineConstants) Microsoft Azure Storage Blobs Batching;Batch blob;Batch operation;BlobBatchClient;BlobBatch;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags) diff --git a/sdk/storage/Azure.Storage.Blobs/src/Azure.Storage.Blobs.csproj b/sdk/storage/Azure.Storage.Blobs/src/Azure.Storage.Blobs.csproj index 317c746eecc1..aadeae56effe 100644 --- a/sdk/storage/Azure.Storage.Blobs/src/Azure.Storage.Blobs.csproj +++ b/sdk/storage/Azure.Storage.Blobs/src/Azure.Storage.Blobs.csproj @@ -1,10 +1,11 @@ - + $(RequiredTargetFrameworks) Microsoft Azure.Storage.Blobs client library 12.5.0-preview.1 + 12.4.4 BlobSDK;$(DefineConstants) Microsoft Azure Storage Blobs;Microsoft;Azure;Blobs;Blob;Storage;StorageScalable;$(PackageCommonTags) diff --git a/sdk/storage/Azure.Storage.Common/src/Azure.Storage.Common.csproj b/sdk/storage/Azure.Storage.Common/src/Azure.Storage.Common.csproj index c0cf0883c924..8748a42d5f0e 100644 --- a/sdk/storage/Azure.Storage.Common/src/Azure.Storage.Common.csproj +++ b/sdk/storage/Azure.Storage.Common/src/Azure.Storage.Common.csproj @@ -5,6 +5,7 @@ Microsoft Azure.Storage.Common client library 12.5.0-preview.1 + 12.4.3 CommonSDK;$(DefineConstants) Microsoft Azure Storage Common, Microsoft, Azure, StorageScalable, azureofficial diff --git a/sdk/storage/Azure.Storage.Files.DataLake/src/Azure.Storage.Files.DataLake.csproj b/sdk/storage/Azure.Storage.Files.DataLake/src/Azure.Storage.Files.DataLake.csproj index 9b9421726985..1c89c29045e7 100644 --- a/sdk/storage/Azure.Storage.Files.DataLake/src/Azure.Storage.Files.DataLake.csproj +++ b/sdk/storage/Azure.Storage.Files.DataLake/src/Azure.Storage.Files.DataLake.csproj @@ -5,6 +5,7 @@ Microsoft Azure.Storage.Files.DataLake client library 12.3.0-preview.1 + 12.2.2 DataLakeSDK;$(DefineConstants) Microsoft Azure Storage Files;Microsoft;Azure;File;Files;Data Lake;Storage;StorageScalable;$(PackageCommonTags) @@ -16,7 +17,6 @@ REST API Reference for Data Lake - https://docs.microsoft.com/en-us/rest/api/storageservices/datalakestoragegen2/filesystem true - false diff --git a/sdk/storage/Azure.Storage.Files.Shares/src/Azure.Storage.Files.Shares.csproj b/sdk/storage/Azure.Storage.Files.Shares/src/Azure.Storage.Files.Shares.csproj index d8c1b0877a4d..13795820889d 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/src/Azure.Storage.Files.Shares.csproj +++ b/sdk/storage/Azure.Storage.Files.Shares/src/Azure.Storage.Files.Shares.csproj @@ -5,6 +5,7 @@ Microsoft Azure.Storage.Files.Shares client library 12.3.0-preview.1 + 12.2.3 FileSDK;$(DefineConstants) Microsoft Azure Storage Files;Microsoft;Azure;File;Files;Storage;StorageScalable;$(PackageCommonTags) diff --git a/sdk/storage/Azure.Storage.Queues/src/Azure.Storage.Queues.csproj b/sdk/storage/Azure.Storage.Queues/src/Azure.Storage.Queues.csproj index efc3150cc783..cd10d299dd06 100644 --- a/sdk/storage/Azure.Storage.Queues/src/Azure.Storage.Queues.csproj +++ b/sdk/storage/Azure.Storage.Queues/src/Azure.Storage.Queues.csproj @@ -1,10 +1,11 @@ - + $(RequiredTargetFrameworks) Microsoft Azure.Storage.Queues client library 12.4.0-preview.1 + 12.3.2 QueueSDK;$(DefineConstants) Microsoft Azure Storage Queues;Microsoft;Azure;Queues;Queue;Storage;StorageScalable;$(PackageCommonTags) diff --git a/sdk/storage/Azure.Storage.sln b/sdk/storage/Azure.Storage.sln index 7d220db0125a..e233bbc4ab0e 100644 --- a/sdk/storage/Azure.Storage.sln +++ b/sdk/storage/Azure.Storage.sln @@ -102,8 +102,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Batch", "Batch", "{610DBA57 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Storage.Blobs.Batch.Tests", "Azure.Storage.Blobs.Batch\tests\Azure.Storage.Blobs.Batch.Tests.csproj", "{2C48AA18-94E2-4B8E-9345-DCA941B13EB1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiCompat", "..\..\eng\ApiCompat\ApiCompat.csproj", "{16260507-C87E-44D2-883F-8E338B7A519F}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Storage.Blobs.Batch.Samples.Tests", "Azure.Storage.Blobs.Batch\samples\Azure.Storage.Blobs.Batch.Samples.Tests.csproj", "{73F575E6-FA87-40B0-9D36-6D9FAAC1E1C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{23B3D5C8-3160-4BD6-8B25-0D33C98ABE70}" @@ -190,10 +188,6 @@ Global {2C48AA18-94E2-4B8E-9345-DCA941B13EB1}.Debug|Any CPU.Build.0 = Debug|Any CPU {2C48AA18-94E2-4B8E-9345-DCA941B13EB1}.Release|Any CPU.ActiveCfg = Release|Any CPU {2C48AA18-94E2-4B8E-9345-DCA941B13EB1}.Release|Any CPU.Build.0 = Release|Any CPU - {16260507-C87E-44D2-883F-8E338B7A519F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {16260507-C87E-44D2-883F-8E338B7A519F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {16260507-C87E-44D2-883F-8E338B7A519F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {16260507-C87E-44D2-883F-8E338B7A519F}.Release|Any CPU.Build.0 = Release|Any CPU {73F575E6-FA87-40B0-9D36-6D9FAAC1E1C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {73F575E6-FA87-40B0-9D36-6D9FAAC1E1C1}.Debug|Any CPU.Build.0 = Debug|Any CPU {73F575E6-FA87-40B0-9D36-6D9FAAC1E1C1}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -210,7 +204,6 @@ Global {69A8687B-B040-451E-A72E-295C6CFC1B8B} = {B93D17A7-F7D7-4A2E-9E57-7B6ED57EF749} {AD85524A-FB82-475C-9907-27DBC2BE2945} = {9EF57C69-DC48-4E5C-BBD5-76E23E4ADDA6} {6EEF892F-E4EE-4610-9C94-4B206D9E7152} = {F4218B06-A246-4762-984D-5BC852B62889} - {9B235463-7D89-471E-87CA-A392661255E4} = {B93D17A7-F7D7-4A2E-9E57-7B6ED57EF749} {610DBA57-60FD-4115-8D74-F13A8428973E} = {B93D17A7-F7D7-4A2E-9E57-7B6ED57EF749} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution diff --git a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj index 00b27cd3219e..1be4299d056f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.AccessControl/src/Azure.Analytics.Synapse.AccessControl.csproj @@ -5,7 +5,6 @@ 1.0.0-preview.1 Microsoft Azure Synapse Access Control;$(PackageCommonTags) $(RequiredTargetFrameworks) - false $(NoWarn); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj index de503121e2ff..7d4b92e65f31 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Azure.Analytics.Synapse.Artifacts.csproj @@ -5,7 +5,6 @@ 1.0.0-preview.1 Microsoft Azure Synapse Artifacts;$(PackageCommonTags) $(RequiredTargetFrameworks) - false $(NoWarn); diff --git a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj index 7deef9952cba..b65e8506375f 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj +++ b/sdk/synapse/Azure.Analytics.Synapse.Spark/src/Azure.Analytics.Synapse.Spark.csproj @@ -5,7 +5,6 @@ 1.0.0-preview.1 Microsoft Azure Synapse Spark;$(PackageCommonTags) $(RequiredTargetFrameworks) - false $(NoWarn); diff --git a/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj b/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj index 9b50e6dd9717..e9e6e1224089 100644 --- a/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj +++ b/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj @@ -6,7 +6,6 @@ TableSDK;$(DefineConstants) Microsoft Azure Tables;Microsoft;Azure;Tables;Table;$(PackageCommonTags) $(RequiredTargetFrameworks) - false $(NoWarn);CA1812;CS1591 diff --git a/sdk/tables/Azure.Data.Tables/tests/Azure.Data.Tables.Tests.csproj b/sdk/tables/Azure.Data.Tables/tests/Azure.Data.Tables.Tests.csproj index eccbb59209da..cab070d30d55 100644 --- a/sdk/tables/Azure.Data.Tables/tests/Azure.Data.Tables.Tests.csproj +++ b/sdk/tables/Azure.Data.Tables/tests/Azure.Data.Tables.Tests.csproj @@ -1,7 +1,6 @@  $(RequiredTargetFrameworks) - false diff --git a/sdk/template/Azure.Template/src/Azure.Template.csproj b/sdk/template/Azure.Template/src/Azure.Template.csproj index ae4c5d6dc3e0..9b09674d0b29 100644 --- a/sdk/template/Azure.Template/src/Azure.Template.csproj +++ b/sdk/template/Azure.Template/src/Azure.Template.csproj @@ -5,7 +5,6 @@ 1.0.2-preview.14 Azure Template $(RequiredTargetFrameworks) - false $(NoWarn);CA1812 diff --git a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj index 7683c9177e72..a3113ac3c734 100644 --- a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj +++ b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj @@ -4,10 +4,9 @@ Azure.Graph.Rbac Azure management client SDK for Azure resource provider Microsoft.ResourceGraph azure;management;resourcegraph - true - false $(NoWarn);AZC0001;AZC0008;AZC0012;CS1591 diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj index fe7e0578fde8..27d89f222ddc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj @@ -3,6 +3,7 @@ This is the Microsoft Azure Cognitive Services Text Analytics Service client library Microsoft Azure.AI.TextAnalytics client library 1.1.0-preview.1 + 1.0.0 Microsoft Azure Text Analytics $(RequiredTargetFrameworks) $(NoWarn);3021