Skip to content

Commit adbef30

Browse files
committed
Module setup fix
1 parent 6fd8ce5 commit adbef30

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

src/ResourceManager/NotificationHubs/Commands.NotificationHubs.Test/ScenarioTests/TestBaseClass.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ protected void RunPowerShellTest(params string[] scripts)
5656
SetupManagementClients();
5757

5858
List<string> modules = new List<string>();
59-
modules.Add("Microsoft.Azure.Commands.NotificationHubs.dll");
59+
//modules.Add("Microsoft.Azure.Commands.NotificationHubs.dll");
6060
modules.Add("ScenarioTests\\" + this.GetType().Name + ".ps1");
6161
modules.Add(helper.RMProfileModule);
6262
modules.Add(helper.RMResourceModule);
63-
modules.Add(helper.RMStorageDataPlaneModule);
64-
modules.Add(helper.RMStorageModule);
63+
//modules.Add(helper.RMStorageDataPlaneModule);
64+
//modules.Add(helper.RMStorageModule);
6565
modules.Add(helper.GetRMModulePath(@"AzureRM.NotificationHubs.psd1"));
6666

6767
helper.SetupEnvironment(AzureModule.AzureResourceManager);

src/ResourceManager/NotificationHubs/NotificationHubs.sln

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 14
3-
VisualStudioVersion = 14.0.23107.0
2+
# Visual Studio 2013
3+
VisualStudioVersion = 12.0.40629.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}"
66
EndProject
@@ -21,6 +21,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.NotificationHubs.T
2121
EndProject
2222
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.NotificationHubs", "Commands.NotificationHubs\Commands.NotificationHubs.csproj", "{0C90F837-86C9-4205-858B-4D8DA5CB0352}"
2323
EndProject
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Rest", "..\Resources\Commands.ResourceManager\Cmdlets\Commands.Resources.Rest.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}"
25+
EndProject
26+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources", "..\Resources\Commands.Resources\Commands.Resources.csproj", "{E1F5201D-6067-430E-B303-4E367652991B}"
27+
EndProject
28+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "..\Tags\Commands.Tags\Commands.Tags.csproj", "{2493A8F7-1949-4F29-8D53-9D459046C3B8}"
29+
EndProject
2430
Global
2531
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2632
Debug|Any CPU = Debug|Any CPU
@@ -51,6 +57,18 @@ Global
5157
{0C90F837-86C9-4205-858B-4D8DA5CB0352}.Debug|Any CPU.Build.0 = Debug|Any CPU
5258
{0C90F837-86C9-4205-858B-4D8DA5CB0352}.Release|Any CPU.ActiveCfg = Release|Any CPU
5359
{0C90F837-86C9-4205-858B-4D8DA5CB0352}.Release|Any CPU.Build.0 = Release|Any CPU
60+
{8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
61+
{8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU
62+
{8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU
63+
{8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU
64+
{E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
65+
{E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.Build.0 = Debug|Any CPU
66+
{E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.ActiveCfg = Release|Any CPU
67+
{E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.Build.0 = Release|Any CPU
68+
{2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
69+
{2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
70+
{2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
71+
{2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.Build.0 = Release|Any CPU
5472
EndGlobalSection
5573
GlobalSection(SolutionProperties) = preSolution
5674
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)