Skip to content

Commit 8d71add

Browse files
committed
clean up the build.proj by not differetiating the rm or sm solutions
1 parent aaba772 commit 8d71add

File tree

23 files changed

+42
-87
lines changed

23 files changed

+42
-87
lines changed

AzurePowershell.Test.targets

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@
5252
</Target>
5353

5454
<Target Name="InvokeXUnit">
55+
<ItemGroup>
56+
<AsmXUnitTests Include=".\src\ServiceManagement\Common\Commands.Common.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Common.Test.dll"/>
57+
<AsmXUnitTests Include=".\src\ServiceManagement\Services\Commands.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Test.dll"/>
58+
<AsmXUnitTests Include=".\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll"/>
59+
<AsmXUnitTests Include=".\src\ServiceManagement\ManagedCache\Commands.ManagedCache.Test\bin\Debug\Microsoft.Azure.Commands.ManagedCache.Test.dll"/>
60+
<AsmXUnitTests Include=".\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll"/>
61+
<AsmXUnitTests Include=".\src\ServiceManagement\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
62+
<AsmXUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
63+
<AsmXUnitTests Include=".\src\ServiceManagement\Network\Commands.Network.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.dll"/>
64+
</ItemGroup>
5565
<ItemGroup Condition=" '$(scope)' == '' ">
5666
<XUnitTests Include=".\src\ResourceManager\SiteRecovery\Commands.SiteRecovery.Test\bin\Debug\Microsoft.Azure.Commands.SiteRecovery.Test.dll"/>
5767
<XUnitTests Include=".\src\ResourceManager\Sql\Commands.Sql.Test\bin\Debug\Microsoft.Azure.Commands.Sql.Test.dll"/>
@@ -70,18 +80,15 @@
7080
<XUnitTests Include=".\src\ResourceManager\ApiManagement\Commands.ApiManagement.Test\bin\Debug\Microsoft.Azure.Commands.ApiManagement.Test.dll"/>
7181
<XUnitTests Include=".\src\ResourceManager\Profile\Commands.Profile.Test\bin\Debug\Microsoft.Azure.Commands.Profile.Test.dll"/>
7282
<XUnitTests Include=".\src\ResourceManager\AzureBackup\Commands.AzureBackup.Test\bin\Debug\Microsoft.Azure.Commands.AzureBackup.Test.dll"/>
73-
<XUnitTests Include=".\src\ServiceManagement\Common\Commands.Common.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Common.Test.dll"/>
74-
<XUnitTests Include=".\src\ServiceManagement\Services\Commands.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Test.dll"/>
75-
<XUnitTests Include=".\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll"/>
76-
<XUnitTests Include=".\src\ServiceManagement\ManagedCache\Commands.ManagedCache.Test\bin\Debug\Microsoft.Azure.Commands.ManagedCache.Test.dll"/>
77-
<XUnitTests Include=".\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll"/>
78-
<XUnitTests Include=".\src\ServiceManagement\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
79-
<XUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
80-
<XUnitTests Include=".\src\ServiceManagement\Network\Commands.Network.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.Test.dll"/>
83+
<XUnitTests Include="@(AsmXUnitTests)"/>
84+
</ItemGroup>
85+
<ItemGroup Condition=" '$(scope)' == 'ServiceManagement' ">
86+
<XUnitTests Include="@(AsmXUnitTests)"/>
8187
</ItemGroup>
82-
<ItemGroup Condition=" '$(scope)' != '' ">
88+
<ItemGroup Condition=" '$(scope)' !='' and '$(scope)' != 'ServiceManagement' ">
8389
<XUnitTests Include="$(MSBuildProjectDirectory)\src\ResourceManager\$(scope)\*\bin\Debug\*.Test.dll"/>
84-
</ItemGroup>
90+
</ItemGroup>
91+
8592
<Message Importance="high" Text="Running XUnit tests" />
8693
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
8794
<Exec

build.proj

Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,8 @@
3939
<NuGetPublishingSource Condition=" '$(NuGetPublishingSource)' != '' ">http://psget/PSGallery/api/v2/</NuGetPublishingSource>
4040
</PropertyGroup>
4141
<ItemGroup>
42-
<AzureResourceManagerSln Include=".\src\ResourceManager.sln" Condition=" '$(Scope)' == '' "/>
43-
<!--TODO: do wildcard matching???-->
44-
<AzureResourceManagerSln Include=".\src\$(Scope).sln" Condition=" '$(Scope)' != '' "/>
45-
<AzureServiceManagementSln Include=".\src\ServiceManagement.sln" />
42+
<CmdletSolutionsToBuild Include=".\src\ResourceManager.sln;.\src\ServiceManagement.sln" Condition=" '$(Scope)' == '' "/>
43+
<CmdletSolutionsToBuild Include=".\src\$(Scope).sln" Condition=" '$(Scope)' != '' "/>
4644
<SetupSln Include=".\setup\azurepowershell.sln" />
4745
<SetupPowershellGetSln Include=".\setup-powershellget\powershellget.sln" />
4846
</ItemGroup>
@@ -66,28 +64,19 @@
6664

6765
<!-- Clean the build in all configurations -->
6866
<Target Name="Clean">
69-
<!-- Clean the solutions -->
7067
<Message Importance="high" Text="Cleaning Cmdlets..." ContinueOnError="false" />
7168
<MSBuild
72-
Projects="@(AzureResourceManagerSln)"
73-
Targets="Clean"
74-
Properties="Configuration=$(Configuration);Platform=Any CPU"
75-
ContinueOnError="false" />
76-
<!--<MSBuild
77-
Projects="@(AzureServiceManagementSln)"
78-
Targets="Clean"
79-
Properties="Configuration=$(Configuration);Platform=Any CPU"
80-
ContinueOnError="false" />-->
81-
<MSBuild
82-
Projects="@(SetupSln)"
69+
Projects="@(CmdletSolutionsToBuild)"
8370
Targets="Clean"
8471
Properties="Configuration=$(Configuration);Platform=Any CPU"
8572
ContinueOnError="false" />
73+
8674
<MSBuild
8775
Projects="@(SetupPowershellGetSln)"
8876
Targets="Clean"
8977
Properties="Configuration=$(Configuration);Platform=Any CPU"
90-
ContinueOnError="false" />
78+
ContinueOnError="false"
79+
Condition=" '$(Scope)' == '' "/>
9180

9281
<!-- Delete the publish files -->
9382
<Message Importance="high" Text="Cleaning publish files..." ContinueOnError="false" />
@@ -147,7 +136,7 @@
147136
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\ServiceManagement.sln $(NuGetRestoreConfigSwitch)" ContinueOnError="false"
148137
Condition="$(Scope) == ''" />
149138
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\$(Scope).sln $(NuGetRestoreConfigSwitch)" ContinueOnError="false"
150-
Condition="$(Scope) != ''" />
139+
Condition="$(Scope) != ''" />
151140

152141
<!--Restore the xunit runner needed to run unit tests-->
153142
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\packages.config -PackagesDirectory $(MSBuildProjectDirectory)\packages" />
@@ -159,31 +148,31 @@
159148
<Target Name="Build" DependsOnTargets="RestoreNugetPackages;BuildMsBuildTask">
160149
<Message Importance="high" Text="Building Cmdlets..." />
161150
<MSBuild
162-
Projects="@(AzureResourceManagerSln)"
163-
Targets="Build"
164-
Properties="Configuration=$(Configuration);Platform=Any CPU"
165-
BuildInParallel="$(BuildInParallel)" ContinueOnError="false" />
166-
<!--<MSBuild
167-
Projects="@(AzureServiceManagementSln)"
151+
Projects="@(CmdletSolutionsToBuild)"
168152
Targets="Build"
169153
Properties="Configuration=$(Configuration);Platform=Any CPU"
170-
BuildInParallel="$(BuildInParallel)" ContinueOnError="false" />-->
154+
BuildInParallel="$(BuildInParallel)"
155+
ContinueOnError="false" />
171156

172157
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
173158

174159
<Message Importance="high" Text="Building Setup..." />
175-
<!--<MSBuild
160+
<MSBuild
176161
Projects="@(SetupPowershellGetSln)"
177162
Targets="Build"
178163
Properties="Configuration=$(Configuration);Platform=Any CPU"
179-
ContinueOnError="false" />
164+
ContinueOnError="false"
165+
Condition=" '$(Scope)' == '' "/>
166+
180167
<MSBuild
181168
Projects="@(SetupSln)"
182169
Targets="Build"
183170
Properties="Configuration=$(Configuration);Platform=Any CPU"
184-
ContinueOnError="false" />-->
171+
ContinueOnError="false"
172+
Condition=" '$(Scope)' == '' "/>
185173

186-
<CallTarget Targets="CodeSignInstaller" Condition=" '$(CodeSign)' == 'true' " />
174+
<CallTarget Targets="CodeSignInstaller"
175+
Condition=" '$(CodeSign)' == 'true' and '$(Scope)' == ''" />
187176
</Target>
188177

189178
<!-- Do everything possible -->

src/Compute.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "Common\C
3232
EndProject
3333
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Rest", "ResourceManager\Resources\Commands.ResourceManager\Cmdlets\Commands.Resources.Rest.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}"
3434
EndProject
35+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Storage", "Common\Storage\Commands.Storage\Commands.Storage.csproj", "{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}"
36+
EndProject
3537
Global
3638
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3739
Debug|Any CPU = Debug|Any CPU
@@ -94,6 +96,10 @@ Global
9496
{8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU
9597
{8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU
9698
{8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU
99+
{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
100+
{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Debug|Any CPU.Build.0 = Debug|Any CPU
101+
{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Release|Any CPU.ActiveCfg = Release|Any CPU
102+
{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Release|Any CPU.Build.0 = Release|Any CPU
97103
EndGlobalSection
98104
GlobalSection(SolutionProperties) = preSolution
99105
HideSolutionNode = FALSE

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/ScenarioTests/ApiManagementTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
namespace Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests
1818
{
19-
using System;
20-
using System.IO;
2119
using Microsoft.Azure.Common.Authentication;
2220
using Microsoft.Azure.Gallery;
2321
using Microsoft.Azure.Management.Authorization;

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/ScenarioTests/ApiManagementTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414

1515
namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests
1616
{
17-
using System;
18-
using System.IO;
19-
using System.Management.Automation;
2017
using Microsoft.Azure.Common.Authentication;
2118
using Microsoft.Azure.Gallery;
2219
using Microsoft.Azure.Management.ApiManagement;

src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
using Microsoft.WindowsAzure.Commands.ScenarioTest;
2323
using System;
2424
using System.Collections.Generic;
25-
using System.IO;
2625
using System.Linq;
2726

2827
namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests

src/ResourceManager/Compute/Commands.Compute.Test/Common/ComputeTestController.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@
2121
using Microsoft.Azure.Subscriptions;
2222
using Microsoft.Azure.Test.HttpRecorder;
2323
using Microsoft.WindowsAzure.Commands.ScenarioTest;
24-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2524
using Microsoft.Azure.Management.Storage;
2625
using Microsoft.Azure.Test;
2726
using System;
2827
using System.Collections.Generic;
29-
using System.IO;
3028
using System.Linq;
3129
using Microsoft.Azure.Common.Authentication;
3230
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;

src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using System.Collections.Generic;
16-
using System.IO;
1716
using Microsoft.Azure.Common.Authentication;
1817
using Microsoft.Azure.Gallery;
1918
using Microsoft.Azure.Management.Authorization;
@@ -22,7 +21,6 @@
2221
using Microsoft.Azure.Subscriptions;
2322
using Microsoft.Azure.Test.HttpRecorder;
2423
using Microsoft.WindowsAzure.Commands.ScenarioTest;
25-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2624
using Microsoft.WindowsAzure.Management.Storage;
2725
using Microsoft.Azure.Test;
2826
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;

src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/DnsTestsBase.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
namespace Microsoft.Azure.Commands.ScenarioTest.DnsTests
1919
{
2020
using System;
21-
using System.IO;
2221
using System.Linq;
2322
using Microsoft.Azure.Common.Authentication;
2423
using Microsoft.Azure.Gallery;
@@ -29,8 +28,7 @@ namespace Microsoft.Azure.Commands.ScenarioTest.DnsTests
2928
using Microsoft.Azure.Management.Dns;
3029
using Microsoft.Azure.Subscriptions;
3130
using WindowsAzure.Commands.Test.Utilities.Common;
32-
using Dns.Models;
33-
31+
3432
public class DnsTestsBase : RMTestBase
3533
{
3634
private CSMTestEnvironmentFactory csmTestFactory;

src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightScenarioTestsBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System.IO;
1615
using Microsoft.Azure.Common.Authentication;
1716
using Microsoft.Azure.Management.HDInsight;
1817
using Microsoft.Azure.Test;
19-
using Microsoft.Azure.Test.HttpRecorder;
2018
using Microsoft.WindowsAzure.Commands.ScenarioTest;
2119
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
2220

src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/TestsController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
using Microsoft.WindowsAzure.Commands.ScenarioTest;
1919
using Microsoft.Azure.Test;
2020
using System;
21-
using System.IO;
2221
using System.Linq;
2322
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
2423

src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementController.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@
1818
using Microsoft.Azure.Subscriptions;
1919
using Microsoft.Azure.Test.HttpRecorder;
2020
using Microsoft.WindowsAzure.Commands.ScenarioTest;
21-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2221
using Microsoft.Azure.Test;
2322
using System;
24-
using System.IO;
2523
using System.Linq;
2624
using Microsoft.Azure.Gallery;
2725
using Microsoft.Azure.Graph.RBAC;
2826
using Microsoft.Azure.Management.KeyVault;
2927
using Microsoft.Azure.Commands.ResourceManager.Common;
30-
using Microsoft.Azure.Common.Authentication.Models;
3128

3229
namespace Microsoft.Azure.Commands.KeyVault.Test
3330
{

src/ResourceManager/Network/Commands.Network.Test/NetworkResourcesController.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@
1414

1515
using System;
1616
using System.Linq;
17-
using System.IO;
1817
using Microsoft.Azure.Gallery;
1918
using Microsoft.Azure.Management.Authorization;
2019
using Microsoft.Azure.Management.Network;
2120
using Microsoft.Azure.Management.Resources;
2221
using Microsoft.Azure.Subscriptions;
2322
using Microsoft.WindowsAzure.Commands.ScenarioTest;
24-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2523
using Microsoft.Azure.Test;
2624
using Microsoft.Azure.Common.Authentication;
2725

src/ResourceManager/OperationalInsights/Commands.OperationalInsights.Test/ScenarioTests/OperationalInsightsScenarioTestBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System.Collections.Generic;
16-
using System.IO;
1715
using Microsoft.Azure.Common.Authentication;
1816
using Microsoft.Azure.Gallery;
1917
using Microsoft.Azure.Management.Authorization;

src/ResourceManager/Profile/Commands.Profile.Test/ProfileController.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,10 @@
1313
// ----------------------------------------------------------------------------------
1414

1515
using System;
16-
using System.Collections.Generic;
1716
using System.Linq;
18-
using System.Net.Http;
19-
using System.Net.Http.Headers;
20-
using Microsoft.Azure.Commands.ResourceManager.Common;
2117
using Microsoft.Azure.Common.Authentication;
22-
using Microsoft.Azure.Management.Resources;
2318
using Microsoft.Azure.Subscriptions;
2419
using Microsoft.Azure.Test;
25-
using Microsoft.Azure.Test.HttpRecorder;
2620
using Microsoft.WindowsAzure.Commands.Common.Test.Mocks;
2721
using Microsoft.WindowsAzure.Commands.ScenarioTest;
2822

src/ResourceManager/RedisCache/Commands.RedisCache.Test/ScenarioTests/RedisCacheTestsBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
namespace Microsoft.Azure.Commands.RedisCache.Test.ScenarioTests
1616
{
1717
using System;
18-
using System.IO;
1918
using Microsoft.WindowsAzure.Commands.ScenarioTest;
20-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2119
using Microsoft.Azure.Test;
2220
using Microsoft.Azure.Management.Redis;
2321
using Microsoft.Azure.Common.Authentication;

src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
using System;
1616
using System.Collections.Generic;
17-
using System.IO;
1817
using System.Linq;
1918
using System.Net.Http;
2019
using System.Net.Http.Headers;

src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,18 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
1615
using System.IO;
1716
using System.Net;
1817
using System.Net.Security;
1918
using System.Runtime.Serialization;
2019
using System.Xml;
2120
using Microsoft.Azure.Test.HttpRecorder;
2221
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
23-
using Microsoft.WindowsAzure;
2422
using Microsoft.WindowsAzure.Commands.ScenarioTest;
25-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2623
using Microsoft.WindowsAzure.Management.Scheduler;
2724
using Microsoft.Azure.Management.RecoveryServices;
2825
using Microsoft.Azure.Management.SiteRecovery;
2926
using Microsoft.Azure.Test;
30-
using Microsoft.WindowsAzure.Commands.Common;
31-
using Microsoft.Azure.Common.Authentication.Models;
3227
using Microsoft.Azure.Common.Authentication;
3328
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
3429

src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,15 @@
1616
using Microsoft.Azure.Management.Resources;
1717
using Microsoft.Azure.Test.HttpRecorder;
1818
using Microsoft.WindowsAzure.Commands.ScenarioTest;
19-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2019
using Microsoft.WindowsAzure.Management.Storage;
2120
using Microsoft.Azure.Test;
2221
using Microsoft.Azure.Graph.RBAC;
2322
using Microsoft.Azure.Common.Authentication;
2423
using Microsoft.Azure.Management.Authorization;
25-
using Microsoft.Azure.Commands.Resources.Models.ActiveDirectory;
2624
using System;
2725
using System.Collections.Generic;
28-
using System.IO;
2926
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
3027
using Microsoft.Azure.Commands.ResourceManager.Common;
31-
using Microsoft.Azure.Common.Authentication.Models;
3228

3329

3430
namespace Microsoft.Azure.Commands.ScenarioTest.SqlTests

src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/ScenarioTests/StreamAnalyticsScenarioTestsBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@
1919
using Microsoft.Azure.Management.StreamAnalytics;
2020
using Microsoft.Azure.Subscriptions;
2121
using Microsoft.WindowsAzure.Commands.ScenarioTest;
22-
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2322
using Microsoft.WindowsAzure.Management.Storage;
2423
using Microsoft.Azure.Test;
2524
using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
26-
using System.IO;
2725

2826
namespace Microsoft.Azure.Commands.StreamAnalytics.Test
2927
{

src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/ScenarioTests/TestController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
namespace Microsoft.Azure.Commands.TrafficManager.Test.ScenarioTests
1919
{
2020
using System;
21-
using System.IO;
2221
using System.Linq;
2322
using Microsoft.Azure.Common.Authentication;
2423
using Microsoft.Azure.Gallery;

0 commit comments

Comments
 (0)