diff --git a/Directory.Build.props b/Directory.Build.props index 355ce2715723..2def639e8c8e 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,4 @@  - $(MSBuildThisFileDirectory) $(LibraryRoot)src diff --git a/ForBashPrompt.sh b/ForBashPrompt.sh deleted file mode 100644 index 3c6fff277ae1..000000000000 --- a/ForBashPrompt.sh +++ /dev/null @@ -1,191 +0,0 @@ -#!/bin/bash - -set -e -base=`dirname {BASH_SOURCE[0]}` -rootdir="$( cd "$base" && pwd )" -netstd14="netstandard1.4" -netcore11='netcoreapp1.1' -ubuntu1404="ubuntu.14.04-x64" -nugetOrgSource="https://api.nuget.org/v3/index.json" -localNugetFeed="./tools/LocalNugetFeed" -sdkdir=$rootdir/src/SDKs - -skip_Rps() { - retVal=false - #printf "checking......$1\n" - if [[ ("$1" =~ "Authorization") || ( "$1" =~ "Gallery" ) || ("$1" =~ "Automation") || ( "$1" =~ "Intune" ) || ( "$1" =~ "DataLake.Store" ) - || ( "$1" =~ "Monitor" ) || ( "$1" =~ "RedisCache" ) || ( "$1" =~ "Search" ) || ( "$1" =~ "KeyVault.Tests" ) - || ( "$1" =~ "KeyVault.TestFramework") ]]; then - retVal=true - fi - echo $retVal -} - -restoreBuildCR() { -echo "Restore ClientRuntime for $ubuntu1404" -dotnet restore src/SdkCommon/ClientRuntime.sln -r $ubuntu1404 - -echo "Build ClientRuntime for $net14" -#dotnet restore src/SdkCommon/ClientRuntime/ClientRuntime/Microsoft.Rest.ClientRuntime.csproj -dotnet build src/SdkCommon/ClientRuntime/ClientRuntime/Microsoft.Rest.ClientRuntime.csproj -f $netstd14 -dotnet build src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure/Microsoft.Rest.ClientRuntime.Azure.csproj -f $netstd14 -dotnet build src/SdkCommon/ClientRuntime.Azure.Authentication/Microsoft.Rest.ClientRuntime.Azure.Authentication.csproj -f $netstd14 - -#echo "Build ClientRuntime Tests for $netcore11" -#dotnet build src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11 -#dotnet build src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11 -#dotnet build src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure.Tests/Microsoft.Rest.ClientRuntime.Azure.Tests.csproj -f $netcore11 - -echo "Running ClientRuntime Tests $netcore11" -#dotnet test src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11 -dotnet test src/SdkCommon/ClientRuntime/ClientRuntime.Tests/Microsoft.Rest.ClientRuntime.Tests.csproj -f $netcore11 -dotnet test src/SdkCommon/ClientRuntime.Azure/ClientRuntime.Azure.Tests/Microsoft.Rest.ClientRuntime.Azure.Tests.csproj -f $netcore11 - -} - -restoreBuildRepo() { -#printf "$sdkdir\n" -for folder in $sdkdir/* -do - item=`basename $folder` - if [ -d $sdkdir/$item ]; then - printf "$sdkdir/$item\n" - if [ -f $sdkdir/$item/*.sln ]; then - slnFile=($sdkdir/$item/*.sln) - skipRestore=$( skip_Rps $slnFile ) - if [ "$skipRestore" == false ]; then - printf "Restoring :::::: $slnFile for $ubuntu1404\n" - #dotnet restore $slnFile -r $ubuntu1404 - fi - if [ -d $sdkdir/$item/*.Tests ]; then - testProj=($sdkdir/$item/*.Tests/*.csproj) - skipTest=$( skip_Rps $testProj ) - printf "$skipRp\n" - if [ "$skipTest" == "false" ]; then - printf "Test ------ $testProj for framework $netcore11\n" - #dotnet build $testProj -f $netcore11 - #dotnet test $testProj -f $netcore11 - fi - fi - fi - fi -done -} - -restoreBuildCog() { -cogMgmtDir=($sdkdir/CognitiveServices) -cogDataDir=($sdkdir/CognitiveServices/data-plane) - -if [ -f $cogMgmtDir/*.sln ]; then - cogMgmtSlnFile=($cogMgmtDir/*.sln) - printf "Restoring :::::: $cogMgmtSlnFile for $ubuntu1404\n" -fi - -if [ -d $cogMgmtDir/*.Tests ]; then - cogMgmtTestProj=($cogMgmtDir/*.Tests/*.csproj) - printf "Test ------ $cogMgmtTestProj for framework $netcore11\n" -fi - - -for cogDir in $cogDataDir/* -do - cogDirName=`basename $cogDir` - if [ -f $cogDir/*.sln ]; then - cogDataProjSlnFile=($cogDir/*.sln) - printf "Restoring :::::: $cogDataProjSlnFile for $ubuntu1404\n" - fi - if [ -d $cogDir/*.Tests ]; then - cogDataTestProj=($cogDir/*.Tests/*.csproj) - printf "Test ------ $cogDataTestProj for framework $netcore11\n" - fi -done -} - -restoreBuildKV() { -KVMgmtDir=($sdkdir/KeyVault/Management/*.sln) -if [ -f $KVMgmtDir ]; then - dotnet restore $KVMgmtDir -r ubuntu1404 -fi - -kvDataPSln=($sdkdir/KeyVault/dataPlane/*.sln) -if [ -f $kvDataPSln ]; then - dotnet restore $kvDataPSln -r ubuntu1404 -fi -KVDataPlaneDir=$sdkdir/KeyVault/dataPlane -for kvDir in $KVDataPlaneDir/* -do - kvItem=`basename $kvDir` - if [ -d $kvDir ] && [ "$kvItem" != "Microsoft.Azure.KeyVault.Samples" ] - then - if [[ "$kvItem" =~ "Tests" ]]; then - kvTestProj=($kvDir/*.csproj) - kvTProj=$( skip_Rps $kvSdkProj ) - if [ "$kvTProj" == "false" ]; then - printf "KV TestProject ... $kvTestProj\n" - dotnet restore $kvTestProj -r $ubuntu1404 - dotnet test $kvTestProj -f $netcore11 - fi - else - if [ -f $kvDir/*.csproj ]; then - kvSdkProj=($kvDir/*.csproj) - kvProj=$( skip_Rps $kvSdkProj ) - if [ "$kvProj" == "false" ]; then - dotnet restore $kvSdkProj -r $ubuntu1404 - dotnet build $kvSdkProj -f $netstd14 - fi - fi - fi - fi -done -} - - -restoreBuildCR -#restoreBuildRepo -#restoreBuildCog -#restoreBuildKV - - -: ' -#echo "base: "$base -#echo "rootedir: "$rootdir -#echo "netstandard1.4 " $netstd14 -#echo "netCore1.1 " $netcore11 - - - #if [ -d $sdkdir/$item/Management.* ] - #then - # sdkProjFile=($sdkdir/$item/Management.*/*.csproj) - # printf "Build ------ $sdkProjFile for framework $netstd14\n" - # dotnet build $sdkProjFile -f $netstd14 - #fi - - -else - if [ -d $sdkDir/$item/Management ]; then - printf "Found mgmt $sdkDir/$item/Management\n" - fi - if [ -f $sdkDir/$item/Management/*.sln ]; then - mgmtSln=($sdkDir/$item/Management/*.sln) - printf "Restoring ## $mgmtSln\n" - if [ -d $sdkdir/$item/*.Tests ]; then - mgmtTestProj=($sdkdir/$item/*.Tests/*.csproj) - printf "Test ## $mgmtTestProj for framework $netcore11\n" - fi #mgmtTestProject - fi #mgmgtSln - fi #mgmtSln else - - - #if [[ $("$testProj" =~ "Authorization") || $( "$testProj" =~ "Gallery" ) || $("$testProj" =~ "Automation") || $( "$testProj" =~ "InTune" ) || $( "$testProj" =~ "DataLake.Store" ) ]]; then - #if [[ ("$testProj" =~ "Authorization") || ( "$testProj" =~ "Gallery" ) || ("$testProj" =~ "Automation") || ( "$testProj" =~ "Intune" ) || ( "$testProj" =~ "DataLake.Store" ) - #|| ( "$testProj" =~ "Monitor" ) || ( "$testProj" =~ "RedisCache" ) ]]; then - - if [[ "$cogItem" =~ "Tests" ]]; then - print "cogItem --- $cogItem\n" - cogDataTestProj=($cogItem/*.csproj) - printf "Cog TestProjects ... $cogDataTestProj\n" - #dotnet restore $cogDataTestProj -r $ubuntu1404 - #dotnet test $cogDataTestProj -f $netcore11 - fi - -' \ No newline at end of file diff --git a/dirs.proj b/dirs.proj deleted file mode 100644 index 8c986b8d4dd5..000000000000 --- a/dirs.proj +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/ContainerRegistry.Tests.xproj b/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/ContainerRegistry.Tests.xproj deleted file mode 100644 index f044ab0fb8d5..000000000000 --- a/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/ContainerRegistry.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7912b952-4358-4740-b09e-2d84a371d385 - ContainerRegistry.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/project.json b/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/project.json deleted file mode 100644 index b59e8b51834e..000000000000 --- a/src/SDKs/ContainerRegistry/ContainerRegistry.Tests/project.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "ContainerRegistry.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "ContainerRegistry.Tests Tests.", - "tags": [ "" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": [ "dnxcore50", "portable-net45+win8" ], - "dependencies": { - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.4.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.4,4.0.0)", - "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "Microsoft.Azure.Management.ContainerRegistry": "1.0.0-preview", - "Microsoft.Azure.Management.Storage": "[5.0.2-preview,6.0)", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029" - } -} diff --git a/src/SDKs/DataLake.Store/DataLakeStore.Tests/DataLakeStore.Tests.xproj b/src/SDKs/DataLake.Store/DataLakeStore.Tests/DataLakeStore.Tests.xproj deleted file mode 100644 index 0c0d8161e86f..000000000000 --- a/src/SDKs/DataLake.Store/DataLakeStore.Tests/DataLakeStore.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 04b4a8c0-95b4-4139-be8e-885e087f5205 - DataLakeStore.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.xproj b/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.xproj deleted file mode 100644 index 6f8904dd7b77..000000000000 --- a/src/SDKs/DataLake.Store/Management.DataLake.Store/Microsoft.Azure.Management.DataLake.Store.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 192f53cc-693e-4990-8741-4e55b930821c - Microsoft.Azure.Management.DataLake.Store - .\obj - .\bin\ - - - 2.0 - - - True - - - \ No newline at end of file diff --git a/src/SDKs/DataLake.Store/global.json b/src/SDKs/DataLake.Store/global.json deleted file mode 100644 index f4985a57b027..000000000000 --- a/src/SDKs/DataLake.Store/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.DataLake.Store", "DataLakeStore.Tests" ] -} diff --git a/src/SDKs/DevTestLabs/DevTestLabs.Tests/DevTestLabs.Tests.xproj b/src/SDKs/DevTestLabs/DevTestLabs.Tests/DevTestLabs.Tests.xproj deleted file mode 100644 index 8133f5529d7d..000000000000 --- a/src/SDKs/DevTestLabs/DevTestLabs.Tests/DevTestLabs.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0.24711 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7772CC5B-1548-474E-AD0D-39D2B7BB3D05 - MDevTestLabs.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/EventHub/global.json b/src/SDKs/EventHub/global.json deleted file mode 100644 index b858c5f1a170..000000000000 --- a/src/SDKs/EventHub/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.ServiceBus" ] -} \ No newline at end of file diff --git a/src/SDKs/Insights/Insights.Tests/Insights.Tests.xproj b/src/SDKs/Insights/Insights.Tests/Insights.Tests.xproj deleted file mode 100644 index c6f711e69364..000000000000 --- a/src/SDKs/Insights/Insights.Tests/Insights.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 2684f7eb-16b8-487e-a0ab-f4b3091c9197 - Insights.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/Insights/Insights.Tests/project.json b/src/SDKs/Insights/Insights.Tests/project.json deleted file mode 100644 index a4c0a1a64f66..000000000000 --- a/src/SDKs/Insights/Insights.Tests/project.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "Insights.Tests Class library", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Insights.Tests Tests", - "projectUrl": "", - "licenseUrl": "", - "tags": [ "" ] - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": [ "dnxcore50", "portable-net45+win8" ], - "dependencies": { - "System.Diagnostics.Tracing": "4.1.0" - } - } - }, - - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Azure.Insights": "0.14.1-preview", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029" - } -} \ No newline at end of file diff --git a/src/SDKs/Insights/Microsoft.Azure.Insights/Microsoft.Azure.Insights.xproj b/src/SDKs/Insights/Microsoft.Azure.Insights/Microsoft.Azure.Insights.xproj deleted file mode 100644 index d48eada0a49c..000000000000 --- a/src/SDKs/Insights/Microsoft.Azure.Insights/Microsoft.Azure.Insights.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 8989ed12-b754-4ebd-bc97-efa7b11ffd49 - Insights - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/SDKs/Insights/Microsoft.Azure.Insights/project.json b/src/SDKs/Insights/Microsoft.Azure.Insights/project.json deleted file mode 100644 index 5b7046701c80..000000000000 --- a/src/SDKs/Insights/Microsoft.Azure.Insights/project.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "version": "0.15.0-preview", - "description": "Microsoft Azure Insights Library", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Provides Microsoft Azure Insights operations using Resource Manager", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft", "Microsoft Azure", "Azure", "Insights", "monitoring", "monitoring services", "metrics", "alerts", "autoscale", "events", "operations", "logs", "REST", "HTTP", "client", "azureofficial", "windowsazureofficial", "management services", "diagnostics", "telemetry", "analytics", "netcore451511" ], - "requireLicenseAcceptance": false - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - "dependencies": { - "Microsoft.Net.Http": "[2.2.28,3.0.0)", - "Newtonsoft.Json": "[6.0.8,7.0.0)" - } - }, - "netstandard1.5": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "netstandard1.1": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Net.Http": "4.3.0" - } - } - } -} diff --git a/src/SDKs/Insights/global.json b/src/SDKs/Insights/global.json deleted file mode 100644 index 5781caa8af62..000000000000 --- a/src/SDKs/Insights/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Insights", "Insights.Tests"] -} diff --git a/src/SDKs/Intune/NuGet.Config b/src/SDKs/Intune/NuGet.Config deleted file mode 100644 index ffd4ee71e642..000000000000 --- a/src/SDKs/Intune/NuGet.Config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/SDKs/KeyVault/dataPlane/dirs.proj b/src/SDKs/KeyVault/dataPlane/dirs.proj deleted file mode 100644 index e4e3e5a7a63f..000000000000 --- a/src/SDKs/KeyVault/dataPlane/dirs.proj +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/SDKs/Media/Management.Media/Microsoft.Azure.Management.Media.xproj b/src/SDKs/Media/Management.Media/Microsoft.Azure.Management.Media.xproj deleted file mode 100644 index 3930016c7fee..000000000000 --- a/src/SDKs/Media/Management.Media/Microsoft.Azure.Management.Media.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - d2a91911-afc5-440c-84e9-1a217f1cb082 - Microsoft.Azure.Management.Media - .\obj - .\bin\ - v4.5.2 - - - - 2.0 - - - diff --git a/src/SDKs/Media/Management.Media/project.json b/src/SDKs/Media/Management.Media/project.json deleted file mode 100644 index 62681c9bf28a..000000000000 --- a/src/SDKs/Media/Management.Media/project.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "version": "0.2.0", - "description": "Provides developers with libraries for managing the MediaServices under Azure Resource Manager. New, set, get and delete MediaServices, regenerate account keys, sync the storage key and more.", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Provides developers with libraries for managing the MediaServices under Azure Resource Manager. New, set, get and delete MediaServices account, regenerate account keys, sync the storage key and more.", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "tags": [ "Microsoft Azure Media management", "Media", "Media management", "REST HTTP client", "netcore451511" ], - "requireLicenseAcceptance": true - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - "dependencies": { - } - }, - "netstandard1.5": { - "imports": [ "dnxcore50" ], - "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "netstandard1.1": { - "imports": [ "dnxcore50" ], - "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - } - } -} diff --git a/src/SDKs/Media/Media.Tests/Media.Tests.xproj b/src/SDKs/Media/Media.Tests/Media.Tests.xproj deleted file mode 100644 index 9a773adae465..000000000000 --- a/src/SDKs/Media/Media.Tests/Media.Tests.xproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 917ead42-aa01-4853-b4fd-0ca37d73b878 - Media.Tests - .\obj - .\bin\ - v4.5.2 - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/Media/Media.Tests/project.json b/src/SDKs/Media/Media.Tests/project.json deleted file mode 100644 index bbade7208f8a..000000000000 --- a/src/SDKs/Media/Media.Tests/project.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": "0.1.0", - "description": "Media.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "Microsoft Azure Media Management Library Tests.", - "tags": [ "" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": [ "dnxcore50", "portable-net45+win8" ], - "dependencies": { - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.4-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Azure.Management.Media": "[0.1.0,2.0)", - "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.Management.Storage": "[5.0.2-preview,6.0)", - "Microsoft.NETCore.Portable.Compatibility": "1.0.1-rc2-24027" - } -} diff --git a/src/SDKs/Media/global.json b/src/SDKs/Media/global.json deleted file mode 100644 index 85f039a56e35..000000000000 --- a/src/SDKs/Media/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.Media", "Media.Tests" ] -} \ No newline at end of file diff --git a/src/SDKs/NotificationHubs/NotificationHubs.Tests/NotificationHubs.Tests.xproj b/src/SDKs/NotificationHubs/NotificationHubs.Tests/NotificationHubs.Tests.xproj deleted file mode 100644 index d2f4f8ef390c..000000000000 --- a/src/SDKs/NotificationHubs/NotificationHubs.Tests/NotificationHubs.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 90FE65CB-D848-4ED8-97F5-7C967102CEAF - NotificationHubs.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/NotificationHubs/NotificationHubs.Tests/project.json b/src/SDKs/NotificationHubs/NotificationHubs.Tests/project.json deleted file mode 100644 index 6dae7263df1c..000000000000 --- a/src/SDKs/NotificationHubs/NotificationHubs.Tests/project.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "NotificationHubs.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "NotificationHubs.Tests Tests.", - "tags": [ "" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" - }, - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": ["dnxcore50", "portable-net45+win8"], - "dependencies": { - } - } - }, - "dependencies": { - "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.Management.NotificationHubs": "2.1.0-preview", - "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.1.0)", - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.1.0)", - "xunit": "2.2.0-beta2-build3300" - } -} \ No newline at end of file diff --git a/src/SDKs/NotificationHubs/global.json b/src/SDKs/NotificationHubs/global.json deleted file mode 100644 index 67691f327a97..000000000000 --- a/src/SDKs/NotificationHubs/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.NotificationHubs" ] -} \ No newline at end of file diff --git a/src/SDKs/OperationalInsights/Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj b/src/SDKs/OperationalInsights/Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj deleted file mode 100644 index 292e4005fcbb..000000000000 --- a/src/SDKs/OperationalInsights/Management.OperationalInsights/Microsoft.Azure.Management.OperationalInsights.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 9f94c9b6-2ffa-42c5-b1f9-57aec6ee17b1 - Microsoft.Azure.Management.OperationalInsights - .\obj - .\bin\ - v4.5.2 - - - - 2.0 - - - diff --git a/src/SDKs/OperationalInsights/Management.OperationalInsights/project.json b/src/SDKs/OperationalInsights/Management.OperationalInsights/project.json deleted file mode 100644 index 8462501146ec..000000000000 --- a/src/SDKs/OperationalInsights/Management.OperationalInsights/project.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": "0.18.0-preview", - "description": "Provides Microsoft Azure Operational Insights management operations", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Provides Microsoft Azure Operational Insights management operations", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure OperationalInsights", "OperationalInsights", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - }, - "netstandard1.5": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "netstandard1.1": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj b/src/SDKs/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj deleted file mode 100644 index 8f8ad6b3b1ad..000000000000 --- a/src/SDKs/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.xproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 36862d74-cf80-4758-a212-eaad501f3ccc - OperationalInsights.Test - .\obj - .\bin\ - v4.5.2 - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/OperationalInsights/OperationalInsights.Test/project.json b/src/SDKs/OperationalInsights/OperationalInsights.Test/project.json deleted file mode 100644 index 555206e25247..000000000000 --- a/src/SDKs/OperationalInsights/OperationalInsights.Test/project.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "OperationalInsights.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "OperationalInsights.Tests Tests.", - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs", - "xmlDoc": true - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": ["dnxcore50", "portable-net45+win8"], - "dependencies": { - "System.Diagnostics.Tracing": "4.3.0" - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Management.OperationalInsights": { - "target": "project", - "type": "build" - }, - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.3,4.0.0)", - "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029" - } -} \ No newline at end of file diff --git a/src/SDKs/OperationalInsights/global.json b/src/SDKs/OperationalInsights/global.json deleted file mode 100644 index 08c57d9a95d5..000000000000 --- a/src/SDKs/OperationalInsights/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "../../ClientRuntime", "../../TestFramework", "Microsoft.Azure.Management.OperationalInsights", "OperationalInsights.Tests" ] -} \ No newline at end of file diff --git a/src/SDKs/RecoveryServices/Management.RecoveryServices/Microsoft.Azure.Management.RecoveryServices.xproj b/src/SDKs/RecoveryServices/Management.RecoveryServices/Microsoft.Azure.Management.RecoveryServices.xproj deleted file mode 100644 index 2a79cb719c96..000000000000 --- a/src/SDKs/RecoveryServices/Management.RecoveryServices/Microsoft.Azure.Management.RecoveryServices.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 44bb4174-5ddd-4008-b391-df20db60b490 - Microsoft.Azure.Management.RecoveryServices - .\obj - .\bin\ - - - 2.0 - - - True - - - \ No newline at end of file diff --git a/src/SDKs/RecoveryServices/Management.RecoveryServices/project.json b/src/SDKs/RecoveryServices/Management.RecoveryServices/project.json deleted file mode 100644 index 75392f3ef647..000000000000 --- a/src/SDKs/RecoveryServices/Management.RecoveryServices/project.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "version": "4.2.0-preview", - "description": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", - "authors": [ "Microsoft" ], - "packOptions": { - "summary": "Provides developers with libraries for the updated recovery services backup feature under Azure Resource manager.", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure resource management", "netcore451511" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.6,3.0.0)" - }, - "frameworks": { - "net45": { - "dependencies": { - } - }, - "netstandard1.5": { - "imports": [ "dnxcore50" ], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "netstandard1.1": { - "imports": [ "dnxcore50" ], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - } - } -} diff --git a/src/SDKs/RecoveryServices/RecoveryServices.Tests/RecoveryServices.Tests.xproj b/src/SDKs/RecoveryServices/RecoveryServices.Tests/RecoveryServices.Tests.xproj deleted file mode 100644 index 5fb9881f2dcb..000000000000 --- a/src/SDKs/RecoveryServices/RecoveryServices.Tests/RecoveryServices.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 27efa488-e3c5-4d97-bbf3-138af1326f93 - RecoveryServices.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/RecoveryServices/RecoveryServices.Tests/project.json b/src/SDKs/RecoveryServices/RecoveryServices.Tests/project.json deleted file mode 100644 index 152f4119f7ce..000000000000 --- a/src/SDKs/RecoveryServices/RecoveryServices.Tests/project.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "RecoveryServices.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - "packOptions": { - "summary": "RecoveryServices.Tests Tests.", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": [ "dnxcore50", "portable-net45+win8" ], - "dependencies": { - "System.Diagnostics.Tracing": "4.1.0" - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Azure.ResourceManager": "1.0.0-preview", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.Management.RecoveryServices": "0.1.2" - } -} \ No newline at end of file diff --git a/src/SDKs/RecoveryServices/global.json b/src/SDKs/RecoveryServices/global.json deleted file mode 100644 index 51800e1d48b1..000000000000 --- a/src/SDKs/RecoveryServices/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.Compute", "Compute.Tests", "../Network" ] -} \ No newline at end of file diff --git a/src/SDKs/Scheduler/Management.Scheduler/Microsoft.Azure.Management.Scheduler.xproj b/src/SDKs/Scheduler/Management.Scheduler/Microsoft.Azure.Management.Scheduler.xproj deleted file mode 100644 index 68d8746ca8c8..000000000000 --- a/src/SDKs/Scheduler/Management.Scheduler/Microsoft.Azure.Management.Scheduler.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7f5b0cab-cd47-47ff-abea-4e700bf16bea - Microsoft.Azure.Management.Scheduler - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/SDKs/Scheduler/Management.Scheduler/project.json b/src/SDKs/Scheduler/Management.Scheduler/project.json deleted file mode 100644 index f268381feebc..000000000000 --- a/src/SDKs/Scheduler/Management.Scheduler/project.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": "2.2.0", - "description": "Provides job collection and job management capabilities for Microsoft Azure Scheduler.", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Provides job collection and job management capabilities for Microsoft Azure Scheduler.", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Scheduler", "Scheduler", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - }, - "netstandard1.5": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0" - } - }, - "netstandard1.1": { - "imports": ["dnxcore50"], - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/Scheduler/Scheduler.Test/Scheduler.Test.xproj b/src/SDKs/Scheduler/Scheduler.Test/Scheduler.Test.xproj deleted file mode 100644 index d467284dc6a6..000000000000 --- a/src/SDKs/Scheduler/Scheduler.Test/Scheduler.Test.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 26271b70-5f11-4056-b1ff-3d78620ca8bc - Scheduler.Test - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/Scheduler/Scheduler.Test/project.json b/src/SDKs/Scheduler/Scheduler.Test/project.json deleted file mode 100644 index 6d8d0e115a91..000000000000 --- a/src/SDKs/Scheduler/Scheduler.Test/project.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "Scheduler.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "Scheduler.Tests Tests.", - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "" - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs", - "xmlDoc": true - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": ["dnxcore50", "portable-net45+win8"], - "dependencies": { - "System.Diagnostics.Tracing": "4.1.0" - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.6-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)", - "Microsoft.Azure.Management.Scheduler": "[2.1.1,3.0)", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029" - }, -} \ No newline at end of file diff --git a/src/SDKs/Scheduler/global.json b/src/SDKs/Scheduler/global.json deleted file mode 100644 index aee8311ad4aa..000000000000 --- a/src/SDKs/Scheduler/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.Scheduler"] -} \ No newline at end of file diff --git a/src/SDKs/ServerManagement/Management.ServerManagement/Microsoft.Azure.Management.ServerManagement.xproj b/src/SDKs/ServerManagement/Management.ServerManagement/Microsoft.Azure.Management.ServerManagement.xproj deleted file mode 100644 index f6b814e15e44..000000000000 --- a/src/SDKs/ServerManagement/Management.ServerManagement/Microsoft.Azure.Management.ServerManagement.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 4a90218f-d6f8-4b9e-bbd0-a76db1c305b8 - Microsoft.Azure.Management.ServerManagement - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/SDKs/ServerManagement/Management.ServerManagement/project.json b/src/SDKs/ServerManagement/Management.ServerManagement/project.json deleted file mode 100644 index c947f7495eee..000000000000 --- a/src/SDKs/ServerManagement/Management.ServerManagement/project.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": "1.1.0", - "description": "Allows programatic access to create SMT Gateways, Nodes, Sessions and remotely access PowerShell on a SMT Node.", - "authors": [ "Microsoft" ], - - "packOptions": { - "summary": "Provides Azure Server Management tools capabilities.", - "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", - "tags": [ "Microsoft Azure Server Management", "Server Management", "REST HTTP client", "azureofficial", "windowsazureofficial", "netcore451511" ], - "projectUrl": "https://github.com/Azure/azure-sdk-for-net", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", - "requireLicenseAcceptance": true - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "xmlDoc": true - }, - "dependencies": { - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" - }, - - "frameworks": { - "net45": { - "frameworkAssemblies": { - "System.Security": "4.0.0.0" - } - }, - "netstandard1.5": { - "imports": ["dnxcore50"], - "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Diagnostics.Tools": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Threading.Tasks": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0" - } - }, - "netstandard1.1": { - "imports": ["dnxcore50"], - "buildOptions": { "define": [ "PORTABLE" ] }, - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "NETStandard.Library": "1.6.1", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Security.Cryptography.Algorithms": "4.2.0" - } - } - } -} \ No newline at end of file diff --git a/src/SDKs/ServerManagement/ServerManagement.Tests/ServerManagement.Tests.xproj b/src/SDKs/ServerManagement/ServerManagement.Tests/ServerManagement.Tests.xproj deleted file mode 100644 index 887069e7da34..000000000000 --- a/src/SDKs/ServerManagement/ServerManagement.Tests/ServerManagement.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - daaf0e55-bf01-475e-bcd9-66eb7c134b72 - ServerManagement.Tests - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/src/SDKs/ServerManagement/ServerManagement.Tests/packages.config b/src/SDKs/ServerManagement/ServerManagement.Tests/packages.config deleted file mode 100644 index 34124402db2b..000000000000 --- a/src/SDKs/ServerManagement/ServerManagement.Tests/packages.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/SDKs/ServerManagement/ServerManagement.Tests/project.json b/src/SDKs/ServerManagement/ServerManagement.Tests/project.json deleted file mode 100644 index 4067a0067811..000000000000 --- a/src/SDKs/ServerManagement/ServerManagement.Tests/project.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "ServerManagement.Tests Class Library", - "authors": [ "Microsoft Corporation" ], - - "packOptions": { - "summary": "ServerManagement.Tests Tests.", - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "", - }, - - "buildOptions": { - "delaySign": true, - "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" - }, - - "testRunner": "xunit", - "frameworks": { - "netcoreapp1.0": { - "imports": ["dnxcore50", "portable-net45+win8"], - "dependencies": { - "System.Diagnostics.Tracing": "4.1.0", - "System.ServiceProcess.ServiceController": "4.1.0", - "System.Security.Cryptography.ProtectedData": "4.0.0" - } - } - }, - "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0" - }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.6-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", - "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)", - "Microsoft.Azure.Management.ServerManagement": "[1.0.7, 2.0)", - "System.Security.Principal": "4.0.1", - "System.Security.Principal.Windows": "4.0.0", - "System.IO.Packaging": "4.0.0", - "xunit": "2.2.0-beta2-build3300", - "dotnet-test-xunit": "2.2.0-preview2-build1029" - } -} \ No newline at end of file diff --git a/src/SDKs/ServerManagement/global.json b/src/SDKs/ServerManagement/global.json deleted file mode 100644 index 85343fdadecd..000000000000 --- a/src/SDKs/ServerManagement/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.ServerManagement" ] -} \ No newline at end of file diff --git a/src/SDKs/ServiceBus/global.json b/src/SDKs/ServiceBus/global.json deleted file mode 100644 index b858c5f1a170..000000000000 --- a/src/SDKs/ServiceBus/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "Microsoft.Azure.Management.ServiceBus" ] -} \ No newline at end of file diff --git a/src/SDKs/SqlManagement/global.json b/src/SDKs/SqlManagement/global.json deleted file mode 100644 index 4bd0e6191091..000000000000 --- a/src/SDKs/SqlManagement/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": [ "../../TestFramework", "Microsoft.Azure.Management.Sql", "Sql.Tests" ] -} \ No newline at end of file diff --git a/src/SDKs/dirs.proj b/src/SDKs/dirs.proj deleted file mode 100644 index 44a87fcb4138..000000000000 --- a/src/SDKs/dirs.proj +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/SdkCommon/TestFramework/dirs.proj b/src/SdkCommon/TestFramework/dirs.proj deleted file mode 100644 index 618c8e049e68..000000000000 --- a/src/SdkCommon/TestFramework/dirs.proj +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/SdkCommon/dirs.proj b/src/SdkCommon/dirs.proj deleted file mode 100644 index a963d4568961..000000000000 --- a/src/SdkCommon/dirs.proj +++ /dev/null @@ -1,44 +0,0 @@ - - - Common ClientRuntime - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Test - - - - - - - - - - - \ No newline at end of file diff --git a/src/dirs.proj b/src/dirs.proj deleted file mode 100644 index 16c65b96e167..000000000000 --- a/src/dirs.proj +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/tools/legacy/.travis.yml b/tools/legacy/ScriptBackup/.travis.yml similarity index 100% rename from tools/legacy/.travis.yml rename to tools/legacy/ScriptBackup/.travis.yml diff --git a/tools/legacy/NuGet.Config b/tools/legacy/ScriptBackup/NuGet.Config similarity index 100% rename from tools/legacy/NuGet.Config rename to tools/legacy/ScriptBackup/NuGet.Config diff --git a/tools/legacy/appveyor.yml b/tools/legacy/ScriptBackup/appveyor.yml similarity index 100% rename from tools/legacy/appveyor.yml rename to tools/legacy/ScriptBackup/appveyor.yml diff --git a/tools/legacy/build.proj b/tools/legacy/ScriptBackup/build.proj similarity index 100% rename from tools/legacy/build.proj rename to tools/legacy/ScriptBackup/build.proj diff --git a/tools/legacy/dotnet-install.sh b/tools/legacy/ScriptBackup/dotnet-install.sh old mode 100755 new mode 100644 similarity index 100% rename from tools/legacy/dotnet-install.sh rename to tools/legacy/ScriptBackup/dotnet-install.sh diff --git a/tools/legacy/global.json b/tools/legacy/ScriptBackup/global.json similarity index 100% rename from tools/legacy/global.json rename to tools/legacy/ScriptBackup/global.json diff --git a/tools/legacy/license_checker.sh b/tools/legacy/ScriptBackup/license_checker.sh similarity index 100% rename from tools/legacy/license_checker.sh rename to tools/legacy/ScriptBackup/license_checker.sh diff --git a/tools/legacy/test_on_linux.sh b/tools/legacy/ScriptBackup/test_on_linux.sh similarity index 100% rename from tools/legacy/test_on_linux.sh rename to tools/legacy/ScriptBackup/test_on_linux.sh diff --git a/src/SDKs/Gallery/Gallery.Tests/DeploymentTests.cs b/tools/legacy/SdkBackup/Gallery/Gallery.Tests/DeploymentTests.cs similarity index 100% rename from src/SDKs/Gallery/Gallery.Tests/DeploymentTests.cs rename to tools/legacy/SdkBackup/Gallery/Gallery.Tests/DeploymentTests.cs diff --git a/src/SDKs/Gallery/Gallery.Tests/Gallery.Tests.csproj b/tools/legacy/SdkBackup/Gallery/Gallery.Tests/Gallery.Tests.csproj similarity index 100% rename from src/SDKs/Gallery/Gallery.Tests/Gallery.Tests.csproj rename to tools/legacy/SdkBackup/Gallery/Gallery.Tests/Gallery.Tests.csproj diff --git a/src/SDKs/Gallery/Gallery.Tests/Helpers/RecordedDelegatingHandler.cs b/tools/legacy/SdkBackup/Gallery/Gallery.Tests/Helpers/RecordedDelegatingHandler.cs similarity index 100% rename from src/SDKs/Gallery/Gallery.Tests/Helpers/RecordedDelegatingHandler.cs rename to tools/legacy/SdkBackup/Gallery/Gallery.Tests/Helpers/RecordedDelegatingHandler.cs diff --git a/src/SDKs/Gallery/Gallery.Tests/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/Gallery/Gallery.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Gallery/Gallery.Tests/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/Gallery/Gallery.Tests/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Gallery/Gallery.sln b/tools/legacy/SdkBackup/Gallery/Gallery.sln similarity index 100% rename from src/SDKs/Gallery/Gallery.sln rename to tools/legacy/SdkBackup/Gallery/Gallery.sln diff --git a/src/SDKs/Gallery/Gallery/Customizations/AnonymousCloudCredentials.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Customizations/AnonymousCloudCredentials.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Customizations/AnonymousCloudCredentials.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Customizations/AnonymousCloudCredentials.cs diff --git a/src/SDKs/Gallery/Gallery/Customizations/ItemListFilter.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Customizations/ItemListFilter.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Customizations/ItemListFilter.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Customizations/ItemListFilter.cs diff --git a/src/SDKs/Gallery/Gallery/Gallery.csproj b/tools/legacy/SdkBackup/Gallery/Gallery/Gallery.csproj similarity index 100% rename from src/SDKs/Gallery/Gallery/Gallery.csproj rename to tools/legacy/SdkBackup/Gallery/Gallery/Gallery.csproj diff --git a/src/SDKs/Gallery/Gallery/Generated/Artifact.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Artifact.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Artifact.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Artifact.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/ArtifactType.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/ArtifactType.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/ArtifactType.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/ArtifactType.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Filter.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Filter.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Filter.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Filter.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/FilterType.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/FilterType.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/FilterType.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/FilterType.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/GalleryClient.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryClient.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/GalleryClient.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryClient.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/GalleryClientExtensions.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryClientExtensions.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/GalleryClientExtensions.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryClientExtensions.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/GalleryItem.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryItem.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/GalleryItem.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/GalleryItem.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/IGalleryClient.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/IGalleryClient.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/IGalleryClient.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/IGalleryClient.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/IItemOperations.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/IItemOperations.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/IItemOperations.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/IItemOperations.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/IconKind.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/IconKind.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/IconKind.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/IconKind.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/ItemOperations.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/ItemOperations.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/ItemOperations.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/ItemOperations.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/ItemOperationsExtensions.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/ItemOperationsExtensions.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/ItemOperationsExtensions.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/ItemOperationsExtensions.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Link.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Link.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Link.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Link.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/MarketingMaterial.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/MarketingMaterial.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/MarketingMaterial.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/MarketingMaterial.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Models/ItemGetParameters.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemGetParameters.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Models/ItemGetParameters.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemGetParameters.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Models/ItemListParameters.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemListParameters.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Models/ItemListParameters.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemListParameters.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Models/ItemListResult.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemListResult.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Models/ItemListResult.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Models/ItemListResult.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/OfferDetails.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/OfferDetails.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/OfferDetails.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/OfferDetails.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Plan.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Plan.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Plan.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Plan.cs diff --git a/src/SDKs/Gallery/Gallery/Generated/Product.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Generated/Product.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Generated/Product.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Generated/Product.cs diff --git a/src/SDKs/Gallery/Gallery/Microsoft.Azure.Gallery.nuget.proj b/tools/legacy/SdkBackup/Gallery/Gallery/Microsoft.Azure.Gallery.nuget.proj similarity index 100% rename from src/SDKs/Gallery/Gallery/Microsoft.Azure.Gallery.nuget.proj rename to tools/legacy/SdkBackup/Gallery/Gallery/Microsoft.Azure.Gallery.nuget.proj diff --git a/src/SDKs/Gallery/Gallery/Microsoft.Azure.Gallery.nuspec b/tools/legacy/SdkBackup/Gallery/Gallery/Microsoft.Azure.Gallery.nuspec similarity index 100% rename from src/SDKs/Gallery/Gallery/Microsoft.Azure.Gallery.nuspec rename to tools/legacy/SdkBackup/Gallery/Gallery/Microsoft.Azure.Gallery.nuspec diff --git a/src/SDKs/Gallery/Gallery/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/Gallery/Gallery/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Gallery/Gallery/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/Gallery/Gallery/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Gallery/Gallery/packages.config b/tools/legacy/SdkBackup/Gallery/Gallery/packages.config similarity index 100% rename from src/SDKs/Gallery/Gallery/packages.config rename to tools/legacy/SdkBackup/Gallery/Gallery/packages.config diff --git a/src/SDKs/Gallery/NuGet.Config b/tools/legacy/SdkBackup/Gallery/NuGet.Config similarity index 100% rename from src/SDKs/Gallery/NuGet.Config rename to tools/legacy/SdkBackup/Gallery/NuGet.Config diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/AADClientHelper.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/AADClientHelper.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/AADClientHelper.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/AADClientHelper.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/AppOrGroupPayloadMaker.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/AppOrGroupPayloadMaker.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/AppOrGroupPayloadMaker.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/AppOrGroupPayloadMaker.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/DefaultAndroidPolicy.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/DefaultAndroidPolicy.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/DefaultAndroidPolicy.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/DefaultAndroidPolicy.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/DefaultiOSPolicy.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/DefaultiOSPolicy.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/DefaultiOSPolicy.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/DefaultiOSPolicy.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/IntuneClientHelper.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneClientHelper.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/IntuneClientHelper.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneClientHelper.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/IntuneConstants.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneConstants.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/IntuneConstants.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneConstants.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/IntuneEnums.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneEnums.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/IntuneEnums.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/IntuneEnums.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/RecordedDelegatingHandler.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/RecordedDelegatingHandler.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/RecordedDelegatingHandler.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/RecordedDelegatingHandler.cs diff --git a/src/SDKs/Intune/Intune.Tests/Helpers/TestContextHelper.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/TestContextHelper.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Helpers/TestContextHelper.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Helpers/TestContextHelper.cs diff --git a/src/SDKs/Intune/Intune.Tests/Intune.Tests.csproj b/tools/legacy/SdkBackup/Intune/Intune.Tests/Intune.Tests.csproj similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Intune.Tests.csproj rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Intune.Tests.csproj diff --git a/src/SDKs/Intune/Intune.Tests/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Intune/Intune.Tests/Properties/Resources.Designer.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/Resources.Designer.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Properties/Resources.Designer.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/Resources.Designer.cs diff --git a/src/SDKs/Intune/Intune.Tests/Properties/Resources.resx b/tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/Resources.resx similarity index 100% rename from src/SDKs/Intune/Intune.Tests/Properties/Resources.resx rename to tools/legacy/SdkBackup/Intune/Intune.Tests/Properties/Resources.resx diff --git a/src/SDKs/Intune/Intune.Tests/ScenarioTests/App.ScenarioTests.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/App.ScenarioTests.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/ScenarioTests/App.ScenarioTests.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/App.ScenarioTests.cs diff --git a/src/SDKs/Intune/Intune.Tests/ScenarioTests/FlaggedUser.ScenarioTests.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/FlaggedUser.ScenarioTests.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/ScenarioTests/FlaggedUser.ScenarioTests.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/FlaggedUser.ScenarioTests.cs diff --git a/src/SDKs/Intune/Intune.Tests/ScenarioTests/Group.ScenarioTests.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Group.ScenarioTests.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/ScenarioTests/Group.ScenarioTests.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Group.ScenarioTests.cs diff --git a/src/SDKs/Intune/Intune.Tests/ScenarioTests/Policy.ScenarioTests.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Policy.ScenarioTests.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/ScenarioTests/Policy.ScenarioTests.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Policy.ScenarioTests.cs diff --git a/src/SDKs/Intune/Intune.Tests/ScenarioTests/Wipe.ScenarioTests.cs b/tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Wipe.ScenarioTests.cs similarity index 100% rename from src/SDKs/Intune/Intune.Tests/ScenarioTests/Wipe.ScenarioTests.cs rename to tools/legacy/SdkBackup/Intune/Intune.Tests/ScenarioTests/Wipe.ScenarioTests.cs diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveAndroidMAMAppForPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveAndroidMAMAppForPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveAndroidMAMAppForPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveAndroidMAMAppForPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveiOSMAMAppForPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveiOSMAMAppForPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveiOSMAMAppForPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldAddAndRemoveiOSMAMAppForPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetAndroidMAMApps.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetAndroidMAMApps.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetAndroidMAMApps.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetAndroidMAMApps.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetiOSMAMApps.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetiOSMAMApps.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetiOSMAMApps.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.AppScenarioTests/ShouldGetiOSMAMApps.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetDefaultStatuses.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetDefaultStatuses.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetDefaultStatuses.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetDefaultStatuses.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedEnrolledApps.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedEnrolledApps.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedEnrolledApps.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedEnrolledApps.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUserByName.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUserByName.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUserByName.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUserByName.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUsers.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUsers.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUsers.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.FlaggedUserScenarioTests/ShouldGetFlaggedUsers.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveAndroidMAMGroupsForPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveAndroidMAMGroupsForPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveAndroidMAMGroupsForPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveAndroidMAMGroupsForPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveiOSMAMGroupsForPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveiOSMAMGroupsForPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveiOSMAMGroupsForPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.GroupScenarioTests/ShouldAddAndRemoveiOSMAMGroupsForPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateAndroidPolicyWithDefaults.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateAndroidPolicyWithDefaults.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateAndroidPolicyWithDefaults.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateAndroidPolicyWithDefaults.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateiOSPolicyWithDefaults.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateiOSPolicyWithDefaults.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateiOSPolicyWithDefaults.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldCreateiOSPolicyWithDefaults.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleAndroidPolicies.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleAndroidPolicies.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleAndroidPolicies.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleAndroidPolicies.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleiOSPolicies.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleiOSPolicies.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleiOSPolicies.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldGetMultipleiOSPolicies.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchAndroidPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchAndroidPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchAndroidPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchAndroidPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchiOSPolicy.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchiOSPolicy.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchiOSPolicy.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.PolicyScenarioTests/ShouldPatchiOSPolicy.json diff --git a/src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.WipeScenarioTests/ShouldWipeDevices.json b/tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.WipeScenarioTests/ShouldWipeDevices.json similarity index 100% rename from src/SDKs/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.WipeScenarioTests/ShouldWipeDevices.json rename to tools/legacy/SdkBackup/Intune/Intune.Tests/SessionRecords/Microsoft.Azure.Management.Intune.Tests.ScenarioTests.WipeScenarioTests/ShouldWipeDevices.json diff --git a/src/SDKs/Intune/Intune.Tests/app.config b/tools/legacy/SdkBackup/Intune/Intune.Tests/app.config similarity index 100% rename from src/SDKs/Intune/Intune.Tests/app.config rename to tools/legacy/SdkBackup/Intune/Intune.Tests/app.config diff --git a/src/SDKs/Intune/Intune.Tests/packages.config b/tools/legacy/SdkBackup/Intune/Intune.Tests/packages.config similarity index 100% rename from src/SDKs/Intune/Intune.Tests/packages.config rename to tools/legacy/SdkBackup/Intune/Intune.Tests/packages.config diff --git a/src/SDKs/Intune/Intune.sln b/tools/legacy/SdkBackup/Intune/Intune.sln similarity index 100% rename from src/SDKs/Intune/Intune.sln rename to tools/legacy/SdkBackup/Intune/Intune.sln diff --git a/src/SDKs/Intune/Intune/Generated/AndroidOperations.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/AndroidOperations.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/AndroidOperations.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/AndroidOperations.cs diff --git a/src/SDKs/Intune/Intune/Generated/AndroidOperationsExtensions.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/AndroidOperationsExtensions.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/AndroidOperationsExtensions.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/AndroidOperationsExtensions.cs diff --git a/src/SDKs/Intune/Intune/Generated/IAndroidOperations.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IAndroidOperations.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IAndroidOperations.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IAndroidOperations.cs diff --git a/src/SDKs/Intune/Intune/Generated/IIntuneResourceManagementClient.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IIntuneResourceManagementClient.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IIntuneResourceManagementClient.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IIntuneResourceManagementClient.cs diff --git a/src/SDKs/Intune/Intune/Generated/IIosOperations.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IIosOperations.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IIosOperations.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IIosOperations.cs diff --git a/src/SDKs/Intune/Intune/Generated/IntuneResourceManagementClient.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IntuneResourceManagementClient.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IntuneResourceManagementClient.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IntuneResourceManagementClient.cs diff --git a/src/SDKs/Intune/Intune/Generated/IntuneResourceManagementClientExtensions.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IntuneResourceManagementClientExtensions.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IntuneResourceManagementClientExtensions.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IntuneResourceManagementClientExtensions.cs diff --git a/src/SDKs/Intune/Intune/Generated/IosOperations.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IosOperations.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IosOperations.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IosOperations.cs diff --git a/src/SDKs/Intune/Intune/Generated/IosOperationsExtensions.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/IosOperationsExtensions.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/IosOperationsExtensions.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/IosOperationsExtensions.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/AndroidMAMPolicy.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/AndroidMAMPolicy.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/AndroidMAMPolicy.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/AndroidMAMPolicy.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Application.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Application.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Application.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Application.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Device.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Device.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Device.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Device.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Error.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Error.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Error.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Error.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/ErrorException.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/ErrorException.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/ErrorException.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/ErrorException.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/FlaggedEnrolledApp.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedEnrolledApp.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/FlaggedEnrolledApp.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedEnrolledApp.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/FlaggedEnrolledAppError.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedEnrolledAppError.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/FlaggedEnrolledAppError.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedEnrolledAppError.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/FlaggedUser.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedUser.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/FlaggedUser.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/FlaggedUser.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/GroupItem.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/GroupItem.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/GroupItem.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/GroupItem.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/IOSMAMPolicy.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/IOSMAMPolicy.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/IOSMAMPolicy.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/IOSMAMPolicy.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Location.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Location.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Location.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Location.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/MAMPolicyAppIdOrGroupIdPayload.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyAppIdOrGroupIdPayload.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/MAMPolicyAppIdOrGroupIdPayload.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyAppIdOrGroupIdPayload.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/MAMPolicyAppOrGroupIdProperties.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyAppOrGroupIdProperties.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/MAMPolicyAppOrGroupIdProperties.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyAppOrGroupIdProperties.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/MAMPolicyProperties.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyProperties.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/MAMPolicyProperties.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/MAMPolicyProperties.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/OperationMetadataProperties.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/OperationMetadataProperties.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/OperationMetadataProperties.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/OperationMetadataProperties.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/OperationResult.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/OperationResult.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/OperationResult.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/OperationResult.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Page.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Page.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Page.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Page.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/Resource.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Resource.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/Resource.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/Resource.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/StatusesDefault.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/StatusesDefault.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/StatusesDefault.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/StatusesDefault.cs diff --git a/src/SDKs/Intune/Intune/Generated/Models/WipeDeviceOperationResult.cs b/tools/legacy/SdkBackup/Intune/Intune/Generated/Models/WipeDeviceOperationResult.cs similarity index 100% rename from src/SDKs/Intune/Intune/Generated/Models/WipeDeviceOperationResult.cs rename to tools/legacy/SdkBackup/Intune/Intune/Generated/Models/WipeDeviceOperationResult.cs diff --git a/src/SDKs/Intune/Intune/Intune.csproj b/tools/legacy/SdkBackup/Intune/Intune/Intune.csproj similarity index 100% rename from src/SDKs/Intune/Intune/Intune.csproj rename to tools/legacy/SdkBackup/Intune/Intune/Intune.csproj diff --git a/src/SDKs/Intune/Intune/Microsoft.Azure.Management.Intune.nuget.proj b/tools/legacy/SdkBackup/Intune/Intune/Microsoft.Azure.Management.Intune.nuget.proj similarity index 100% rename from src/SDKs/Intune/Intune/Microsoft.Azure.Management.Intune.nuget.proj rename to tools/legacy/SdkBackup/Intune/Intune/Microsoft.Azure.Management.Intune.nuget.proj diff --git a/src/SDKs/Intune/Intune/Microsoft.Azure.Management.Intune.nuspec b/tools/legacy/SdkBackup/Intune/Intune/Microsoft.Azure.Management.Intune.nuspec similarity index 100% rename from src/SDKs/Intune/Intune/Microsoft.Azure.Management.Intune.nuspec rename to tools/legacy/SdkBackup/Intune/Intune/Microsoft.Azure.Management.Intune.nuspec diff --git a/src/SDKs/Intune/Intune/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/Intune/Intune/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Intune/Intune/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/Intune/Intune/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Intune/Intune/generate.cmd b/tools/legacy/SdkBackup/Intune/Intune/generate.cmd similarity index 100% rename from src/SDKs/Intune/Intune/generate.cmd rename to tools/legacy/SdkBackup/Intune/Intune/generate.cmd diff --git a/src/SDKs/Intune/Intune/packages.config b/tools/legacy/SdkBackup/Intune/Intune/packages.config similarity index 100% rename from src/SDKs/Intune/Intune/packages.config rename to tools/legacy/SdkBackup/Intune/Intune/packages.config diff --git a/src/SDKs/Insights/NuGet.Config b/tools/legacy/SdkBackup/Intune/NuGet.Config similarity index 100% rename from src/SDKs/Insights/NuGet.Config rename to tools/legacy/SdkBackup/Intune/NuGet.Config diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IPowerBIEmbeddedManagementClient.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IPowerBIEmbeddedManagementClient.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IPowerBIEmbeddedManagementClient.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IPowerBIEmbeddedManagementClient.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspaceCollectionsOperations.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspaceCollectionsOperations.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspaceCollectionsOperations.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspaceCollectionsOperations.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspacesOperations.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspacesOperations.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspacesOperations.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/IWorkspacesOperations.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AccessKeyName.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AccessKeyName.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AccessKeyName.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AccessKeyName.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AzureSku.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AzureSku.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AzureSku.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/AzureSku.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameReason.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameReason.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameReason.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameReason.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameRequest.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameRequest.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameRequest.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameRequest.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameResponse.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameResponse.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameResponse.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CheckNameResponse.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CreateWorkspaceCollectionRequest.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CreateWorkspaceCollectionRequest.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CreateWorkspaceCollectionRequest.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/CreateWorkspaceCollectionRequest.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Display.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Display.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Display.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Display.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Error.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Error.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Error.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Error.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorDetail.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorDetail.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorDetail.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorDetail.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorException.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorException.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorException.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/ErrorException.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/MigrateWorkspaceCollectionRequest.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/MigrateWorkspaceCollectionRequest.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/MigrateWorkspaceCollectionRequest.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/MigrateWorkspaceCollectionRequest.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Operation.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Operation.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Operation.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Operation.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/OperationList.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/OperationList.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/OperationList.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/OperationList.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Page.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Page.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Page.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Page.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/UpdateWorkspaceCollectionRequest.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/UpdateWorkspaceCollectionRequest.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/UpdateWorkspaceCollectionRequest.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/UpdateWorkspaceCollectionRequest.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Workspace.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Workspace.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Workspace.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/Workspace.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollection.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollection.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollection.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollection.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKey.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKey.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKey.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKey.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKeys.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKeys.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKeys.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/Models/WorkspaceCollectionAccessKeys.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClient.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClient.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClient.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClient.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClientExtensions.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClientExtensions.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClientExtensions.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/PowerBIEmbeddedManagementClientExtensions.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperations.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperations.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperations.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperations.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperationsExtensions.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperationsExtensions.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperationsExtensions.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspaceCollectionsOperationsExtensions.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperations.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperations.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperations.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperations.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperationsExtensions.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperationsExtensions.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperationsExtensions.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Generated/WorkspacesOperationsExtensions.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.csproj b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.csproj similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.csproj rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.csproj diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.xproj b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.xproj similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.xproj rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded.xproj diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/Properties/AssemblyInfo.cs diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/generate.cmd b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/generate.cmd similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/generate.cmd rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/generate.cmd diff --git a/src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/project.json b/tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/project.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/Management.PowerBIEmbedded/project.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/Management.PowerBIEmbedded/project.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/PowerBITestUtilities.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/PowerBITestUtilities.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/PowerBITestUtilities.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/PowerBITestUtilities.cs diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/RecordedDelegatingHandler.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/RecordedDelegatingHandler.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/RecordedDelegatingHandler.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Helpers/RecordedDelegatingHandler.cs diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.csproj b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.csproj similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.csproj rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.csproj diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.xproj b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.xproj similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.xproj rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/PowerBIEmbedded.Tests.xproj diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Properties/AssemblyInfo.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/Properties/AssemblyInfo.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/Properties/AssemblyInfo.cs diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBIEmbeddedTests.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBIEmbeddedTests.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBIEmbeddedTests.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBIEmbeddedTests.cs diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBITestBase.cs b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBITestBase.cs similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBITestBase.cs rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/ScenarioTests/PowerBITestBase.cs diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestCreateWorkspaceCollection.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestCreateWorkspaceCollection.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestCreateWorkspaceCollection.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestCreateWorkspaceCollection.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionAccessKeys.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionAccessKeys.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionAccessKeys.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionAccessKeys.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionByName.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionByName.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionByName.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionByName.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListAll.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListAll.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListAll.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListAll.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListByResourceGroup.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListByResourceGroup.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListByResourceGroup.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaceCollectionListByResourceGroup.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaces.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaces.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaces.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestGetWorkspaces.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey1.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey1.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey1.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey1.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey2.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey2.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey2.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRegenerateAccessKey2.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRemoveWorkspaceCollection.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRemoveWorkspaceCollection.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRemoveWorkspaceCollection.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/SessionRecords/PowerBIEmbedded.Tests.ScenarioTests.PowerBIEmbeddedTests/TestRemoveWorkspaceCollection.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/project.json b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/project.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.Tests/project.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.Tests/project.json diff --git a/src/SDKs/PowerBIEmbedded/PowerBIEmbedded.sln b/tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.sln similarity index 100% rename from src/SDKs/PowerBIEmbedded/PowerBIEmbedded.sln rename to tools/legacy/SdkBackup/PowerBIEmbedded/PowerBIEmbedded.sln diff --git a/src/SDKs/PowerBIEmbedded/global.json b/tools/legacy/SdkBackup/PowerBIEmbedded/global.json similarity index 100% rename from src/SDKs/PowerBIEmbedded/global.json rename to tools/legacy/SdkBackup/PowerBIEmbedded/global.json