Skip to content

Commit db5b827

Browse files
committed
Merge pull request #112 from huangpf/dev
Dev
2 parents 5862564 + da2ac74 commit db5b827

File tree

252 files changed

+3936
-1139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+3936
-1139
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2016.02.02 version 1.1.1
2+
* Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters.
13
## 2016.01.12 version 1.1.0
24
* Azure SQL Database: Threat Detection policies:
35
* Using new Threat Detection Types

setup/azurecmd.wxs

Lines changed: 3 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

88
<?define version="1.1.0" ?>
9-
<?define versionedStartMenuFolder="Microsoft Azure" ?>
10-
<?define staleStartMenuFolder="Windows Azure" ?>
119

1210
<Product Id="*"
1311
Name="$(var.productName)"
@@ -31,11 +29,11 @@
3129
<RegistrySearch Id="PSCOMPATIBLEVERSION" Root="HKLM" Key="SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine" Name="PSCompatibleVersion" Type="raw" />
3230
</Property>
3331

34-
<SetProperty Action="SetBase64" Id="BaseModulesFolder" Value="[ProgramFiles64Folder]WindowsPowerShell\Modules" Before="AppSearch">
32+
<SetProperty Action="SetBase64" Id="BaseModulesFolder" Value="[ProgramFiles64Folder]WindowsPowerShell\Modules\" Before="AppSearch">
3533
VersionNT64
3634
</SetProperty>
3735

38-
<SetProperty Action="SetBase32" Id="BaseModulesFolder" Value="[ProgramFilesFolder]WindowsPowerShell\Modules" Before="AppSearch">
36+
<SetProperty Action="SetBase32" Id="BaseModulesFolder" Value="[ProgramFilesFolder]WindowsPowerShell\Modules\" Before="AppSearch">
3937
NOT VersionNT64
4038
</SetProperty>
4139

@@ -63,10 +61,6 @@
6361
</Directory>
6462
</Directory>
6563
</Directory>
66-
<Directory Id="ProgramMenuFolder">
67-
<Directory Id="AzureSdkMenu" Name="$(var.versionedStartMenuFolder)"/>
68-
<Directory Id="StaleAzureSdkMenu" Name="$(var.staleStartMenuFolder)"/>
69-
</Directory>
7064
</Directory>
7165

7266
<Property Id="POWERSHELLPATH">
@@ -81,7 +75,7 @@
8175
<Component Id="PSModulePath.System" Guid="273525B9-7AAB-421A-90C8-8E50A1840B8D">
8276
<CreateFolder />
8377
<!-- Work around bug that PowerShell does not always consider default module paths. -->
84-
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[BaseModulesFolder];[PowerShellFolder]ResourceManager\AzureResourceManager;[PowerShellFolder]ServiceManagement" System="yes" />
78+
<Environment Id="PSModulePath.SystemAppRoot" Action="set" Name="PSMODULEPATH" Part="last" Value="[BaseModulesFolder];[PowerShellFolder]ResourceManager\AzureResourceManager\;[PowerShellFolder]ServiceManagement\" System="yes" />
8579
</Component>
8680
</DirectoryRef>
8781

@@ -97,41 +91,17 @@
9791
</Component>
9892
</DirectoryRef>
9993

100-
<DirectoryRef Id="AzureSdkMenu">
101-
<Component Id="AzureSdkShortcut" Guid="A9B58A22-F746-451D-8840-F887D8014C3C">
102-
<Shortcut Id="AzureSdkStartMenuShortcut"
103-
Name="Microsoft Azure PowerShell"
104-
Description="Microsoft PowerShell cmdlets"
105-
Target="[POWERSHELLPATH]\powershell.exe"
106-
Arguments="-NoExit -ExecutionPolicy Bypass -File &quot;[PowerShellFolder]ServiceManagement\Azure\Services\ShortcutStartup.ps1&quot;"/>
107-
<RemoveFolder Id="AzureSdkMenu" On="uninstall"/>
108-
<RemoveFile Id="RemoveStaleFiles" Directory="StaleAzureSdkMenu" Name="Windows Azure PowerShell.lnk" On="both"/>
109-
<RegistryValue Root="HKCU" Key="SOFTWARE\Microsoft\Microsoft SDKs\WindowsAzure\$(var.version)" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
110-
</Component>
111-
</DirectoryRef>
112-
11394
<Feature Id="azurecmd" Title="Microsoft Azure PowerShell" Level="1" Description="Windows PowerShell commandlets">
11495
<ComponentGroupRef Id="azurecmdfiles" />
11596
<ComponentRef Id="PSModulePath.System" />
116-
<ComponentRef Id="AzureSdkShortcut" />
11797
<ComponentRef Id="AzureSdkExecutionPolicyScript" />
11898
<ComponentRef Id="AzureSdkRemoveModulesScript" />
11999
</Feature>
120100

121101
<Binary Id="CustomActions" SourceFile="$(var.caSourceDir)\Microsoft.WindowsAzure.Setup.CA.dll"/>
122-
<CustomAction Id="UpdatePSShortcut" BinaryKey="CustomActions" DllEntry="UpdatePSShortcut" Execute ="deferred" Impersonate="no"/>
123-
<CustomAction Id="SetCustomActionDataValue" Return="check" Property="UpdatePSShortcut"
124-
Value="ShortcutPath=[AzureSdkMenu]Microsoft Azure PowerShell.lnk;DefaultShortcutPath=[ProgramMenuFolder]System Tools\Windows PowerShell.lnk" />
125102
<CustomAction Id="SetExecutionPolicy" Property="POWERSHELLEXE" ExeCommand="-NoLogo -NoProfile -WindowStyle Hidden -NonInteractive -ExecutionPolicy Bypass -Command &quot;. \&quot;[PowerShellFolder]SetExecutionPolicy.ps1\&quot;&quot;" Execute="deferred" Impersonate="no" Return="check"/>
126103
<CustomAction Id="RemoveGalleryModules" Property="POWERSHELLEXE" ExeCommand="-NoLogo -NoProfile -WindowStyle Hidden -NonInteractive -ExecutionPolicy Bypass -Command &quot;. \&quot;[PowerShellFolder]RemoveGalleryModules.ps1\&quot;&quot;" Execute="deferred" Impersonate="no" Return="check"/>
127104

128-
<InstallExecuteSequence>
129-
<Custom Action="SetCustomActionDataValue" After="CreateShortcuts">NOT Installed</Custom>
130-
<Custom Action="RemoveGalleryModules" After="SetCustomActionDataValue">NOT Installed</Custom>
131-
<Custom Action="UpdatePSShortcut" After="RemoveGalleryModules">NOT Installed</Custom>
132-
<Custom Action="SetExecutionPolicy" After="UpdatePSShortcut">NOT Installed</Custom>
133-
</InstallExecuteSequence>
134-
135105
<WixVariable Id="WixUILicenseRtf" Value="$(var.ProjectDir)\media\License.rtf" />
136106
<UIRef Id="WixUI_Minimal" />
137107
<WixVariable Id="WixUIBannerBmp" Value="media\bannrbmp.bmp" />

setup/azurecmdfiles.wxi

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,9 @@
415415
<Component Id="cmpC964B4550D9D1C104A224E22B19599BF" Guid="*">
416416
<File Id="filA06EE818F6153FBDA14765A9579B69B8" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Batch\Microsoft.Azure.Common.NetFramework.dll" />
417417
</Component>
418+
<Component Id="cmp0660CA6282A998031B7B868E7AA9BFFE" Guid="*">
419+
<File Id="filEE3737B01273A4602F76F3ED51EA9676" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Batch\Microsoft.Azure.KeyVault.Core.dll" />
420+
</Component>
418421
<Component Id="cmp557AD28EA410808B3805EFE4AA73C977" Guid="*">
419422
<File Id="fil17BDDBDDD5EA9206DCF1499F2AF621D9" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Batch\Microsoft.Azure.Management.Batch.dll" />
420423
</Component>
@@ -980,6 +983,9 @@
980983
<Component Id="cmpA0007735AC9E1F08D542DFB279E586D8" Guid="*">
981984
<File Id="fil01D736AF28D556A08BEC46052977A312" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Azure.Common.dll" />
982985
</Component>
986+
<Component Id="cmpA57D9B2B1FA9DFC84A81E3854A2CB87C" Guid="*">
987+
<File Id="fil032AAADDE56C235AAB8CBEC6D7A16884" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Azure.Common.NetFramework.dll" />
988+
</Component>
983989
<Component Id="cmpB3134BB8ADC109CD66C73AB4AC43FF8A" Guid="*">
984990
<File Id="filA97E787A98E4BD2B9966B260AEA3DB26" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Azure.Management.Authorization.dll" />
985991
</Component>
@@ -989,6 +995,15 @@
989995
<Component Id="cmp2F8A21B67A574848E46161AF4DBAEAB7" Guid="*">
990996
<File Id="filF14443EF28F6FBDB30559A1428F6CE5A" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Azure.ResourceManager.dll" />
991997
</Component>
998+
<Component Id="cmp44B0766E3627CFEBD6119DBD995E3945" Guid="*">
999+
<File Id="fil38A0F441D7A5352F776C3E75794E10A9" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Data.Edm.dll" />
1000+
</Component>
1001+
<Component Id="cmpC6787B66E3657598F34EB40B7D4A39D9" Guid="*">
1002+
<File Id="fil3BF2E8D1B0E9325D347210C1E69DBA32" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Data.OData.dll" />
1003+
</Component>
1004+
<Component Id="cmpFD0DE325B243453297C251C92C98245D" Guid="*">
1005+
<File Id="fil4FFFA196C05E15050769FA034FB3EE9E" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.Data.Services.Client.dll" />
1006+
</Component>
9921007
<Component Id="cmp5B16E8141BC633DB9DEB2A9361AF4C71" Guid="*">
9931008
<File Id="fil053D4ECE5C90FA22AC3747457B5DBB3D" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Dns\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
9941009
</Component>
@@ -1054,6 +1069,9 @@
10541069
<Component Id="cmp7EBE3286268B848A8C4813AC64EA4C34" Guid="*">
10551070
<File Id="fil86BDA115F7354D65E9204115899B1774" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.HDInsight\Microsoft.Azure.Graph.RBAC.dll" />
10561071
</Component>
1072+
<Component Id="cmp1E5C482880D1BD5A699356E3CFEA33B6" Guid="*">
1073+
<File Id="fil09F0937B46D8B5463D6026189284E841" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.HDInsight\Microsoft.Azure.KeyVault.Core.dll" />
1074+
</Component>
10571075
<Component Id="cmp84DA44BC01768FB21E1664FF352CB56B" Guid="*">
10581076
<File Id="fil4A5FD068B0A21617E9A7ABB9BEDC9BBD" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.HDInsight\Microsoft.Azure.Management.HDInsight.dll" />
10591077
</Component>
@@ -1146,6 +1164,9 @@
11461164
<Component Id="cmp19A1422310791548B2EE9CC01D0E80AB" Guid="*">
11471165
<File Id="fil775FC63E54E73F93CF6A7DD79AA7766F" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Insights\Microsoft.Azure.Insights.dll" />
11481166
</Component>
1167+
<Component Id="cmpAB0BE651457D19885EE5BD5615E283A9" Guid="*">
1168+
<File Id="fil7C8081F59D42A001771050D89E11D7CB" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Insights\Microsoft.Azure.KeyVault.Core.dll" />
1169+
</Component>
11491170
<Component Id="cmpFB65291F937077CCA80689CFC3727B1A" Guid="*">
11501171
<File Id="fil87446160E4B0238E50AB62B792E935C1" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Insights\Microsoft.Azure.ResourceManager.dll" />
11511172
</Component>
@@ -1808,6 +1829,9 @@
18081829
<Component Id="cmpE542A66FF253AB7ECF153BC7F8617497" Guid="*">
18091830
<File Id="fil076A3639A8C23CB436A1A95F071AB968" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RedisCache\Microsoft.Azure.Insights.dll" />
18101831
</Component>
1832+
<Component Id="cmp305E4FA8EDCADFD3F98F46056489A372" Guid="*">
1833+
<File Id="fil7E321418CAB25E9F0E49A973C3596851" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RedisCache\Microsoft.Azure.KeyVault.Core.dll" />
1834+
</Component>
18111835
<Component Id="cmp3A5E7F3EA44ACFDD84B8CE1D36DA80C7" Guid="*">
18121836
<File Id="fil9B815D18A217668B9C3F30A088551FEE" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.RedisCache\Microsoft.Azure.Management.Redis.dll" />
18131837
</Component>
@@ -2533,6 +2557,9 @@
25332557
<Component Id="cmp12BBC947AD240DEE262EA093791B4CFD" Guid="*">
25342558
<File Id="fil278854BEDEA8FF5856C0538AEF2C651A" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.TrafficManager\Microsoft.Azure.Common.dll" />
25352559
</Component>
2560+
<Component Id="cmp4082D5B2D1FF8772A47657154A994C1B" Guid="*">
2561+
<File Id="fil3A8FA25253954FC962A3D35C634BC4A1" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.TrafficManager\Microsoft.Azure.Common.NetFramework.dll" />
2562+
</Component>
25362563
<Component Id="cmp754B6BD77C6EC782EB88981DAFD35510" Guid="*">
25372564
<File Id="fil9C8B0B0929FDD1386F40C7E26D5A8620" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.TrafficManager\Microsoft.Azure.Management.TrafficManager.dll" />
25382565
</Component>
@@ -3226,6 +3253,9 @@
32263253
<Component Id="cmp524E28243CC9788C41819437014F3F7D" Guid="*">
32273254
<File Id="fil6BD7B8BB425C2B1E0D24EEEDD1C1FDD8" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\HDInsight\Microsoft.Azure.Common.NetFramework.dll" />
32283255
</Component>
3256+
<Component Id="cmp0165D93E848BF589D3E0D3863617F9F0" Guid="*">
3257+
<File Id="fil55AE55B88AC94CD6CC79AD1D084BF659" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\HDInsight\Microsoft.Azure.KeyVault.Core.dll" />
3258+
</Component>
32293259
<Component Id="cmp63E7146E10A0CADBB072FDBAAEC2FDB2" Guid="*">
32303260
<File Id="fil92D5EE3C92A0580B16CAF05E40354F28" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\HDInsight\Microsoft.Azure.ResourceManager.dll" />
32313261
</Component>
@@ -3938,6 +3968,9 @@
39383968
<Component Id="cmp5543C526734BEBD6DBA8D3F4CCAC4906" Guid="*">
39393969
<File Id="fil83B7914462FDE1E5AF770AB859D8B842" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\RemoteApp\Microsoft.Azure.Common.NetFramework.dll" />
39403970
</Component>
3971+
<Component Id="cmpDA11D2F04D85A50CE393C4C23CCED63F" Guid="*">
3972+
<File Id="fil519585B1FCAB1A8CC6D2358A8ABCAF64" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\RemoteApp\Microsoft.Azure.KeyVault.Core.dll" />
3973+
</Component>
39413974
<Component Id="cmp20193DF5170BBA9B0BE967155AF5F05C" Guid="*">
39423975
<File Id="filC19FDC44F712388F8C9CE585B3823B3F" KeyPath="yes" Source="$(var.sourceDir)\ServiceManagement\Azure\RemoteApp\Microsoft.Azure.ResourceManager.dll" />
39433976
</Component>
@@ -4891,6 +4924,7 @@
48914924
<ComponentRef Id="cmpD23F8CB641E890A83A492A99686505AF" />
48924925
<ComponentRef Id="cmpB0584BB55D8714E4CF5E60167B55282E" />
48934926
<ComponentRef Id="cmpC964B4550D9D1C104A224E22B19599BF" />
4927+
<ComponentRef Id="cmp0660CA6282A998031B7B868E7AA9BFFE" />
48944928
<ComponentRef Id="cmp557AD28EA410808B3805EFE4AA73C977" />
48954929
<ComponentRef Id="cmp4B5A611FF761BA928A53E0E56FB58D78" />
48964930
<ComponentRef Id="cmpD762051962F7D3051FBC9CF971AE9325" />
@@ -5076,9 +5110,13 @@
50765110
<ComponentRef Id="cmpC239A907B911A2FE5AC4C3DFF236F154" />
50775111
<ComponentRef Id="cmp4B300B78CE6E09D004B7EF084792169B" />
50785112
<ComponentRef Id="cmpA0007735AC9E1F08D542DFB279E586D8" />
5113+
<ComponentRef Id="cmpA57D9B2B1FA9DFC84A81E3854A2CB87C" />
50795114
<ComponentRef Id="cmpB3134BB8ADC109CD66C73AB4AC43FF8A" />
50805115
<ComponentRef Id="cmp23A4C42E03D6ADC61C13AED7A3C5C43D" />
50815116
<ComponentRef Id="cmp2F8A21B67A574848E46161AF4DBAEAB7" />
5117+
<ComponentRef Id="cmp44B0766E3627CFEBD6119DBD995E3945" />
5118+
<ComponentRef Id="cmpC6787B66E3657598F34EB40B7D4A39D9" />
5119+
<ComponentRef Id="cmpFD0DE325B243453297C251C92C98245D" />
50825120
<ComponentRef Id="cmp5B16E8141BC633DB9DEB2A9361AF4C71" />
50835121
<ComponentRef Id="cmp24741C738CAC6E0595C4035CF8FE190A" />
50845122
<ComponentRef Id="cmpB21325D18CF34CB53A2C33585CE3C81B" />
@@ -5100,6 +5138,7 @@
51005138
<ComponentRef Id="cmp327D63D4E47C0C921CB8B578A78012CD" />
51015139
<ComponentRef Id="cmp0A73501EDFCB1876C97F2D4B520F3E35" />
51025140
<ComponentRef Id="cmp7EBE3286268B848A8C4813AC64EA4C34" />
5141+
<ComponentRef Id="cmp1E5C482880D1BD5A699356E3CFEA33B6" />
51035142
<ComponentRef Id="cmp84DA44BC01768FB21E1664FF352CB56B" />
51045143
<ComponentRef Id="cmpA1C271511C8C2910A9ADBC85D928D54C" />
51055144
<ComponentRef Id="cmp8F725CF358AB23BDABE18B5FE9B73BFA" />
@@ -5130,6 +5169,7 @@
51305169
<ComponentRef Id="cmpA848C04563692D93B90821EE8960E3B4" />
51315170
<ComponentRef Id="cmp652574B007D36760A8F3951C8BBCBA73" />
51325171
<ComponentRef Id="cmp19A1422310791548B2EE9CC01D0E80AB" />
5172+
<ComponentRef Id="cmpAB0BE651457D19885EE5BD5615E283A9" />
51335173
<ComponentRef Id="cmpFB65291F937077CCA80689CFC3727B1A" />
51345174
<ComponentRef Id="cmpC9466F4B506234EBA66C4F1204C0CD5D" />
51355175
<ComponentRef Id="cmp734CB1D0853F1EC3CC1EA7E5A0C5D408" />
@@ -5346,6 +5386,7 @@
53465386
<ComponentRef Id="cmp805E82D161288ED9EE4AD5A6CDA1D594" />
53475387
<ComponentRef Id="cmpDB48760E05625FA4A872912DADB76AE8" />
53485388
<ComponentRef Id="cmpE542A66FF253AB7ECF153BC7F8617497" />
5389+
<ComponentRef Id="cmp305E4FA8EDCADFD3F98F46056489A372" />
53495390
<ComponentRef Id="cmp3A5E7F3EA44ACFDD84B8CE1D36DA80C7" />
53505391
<ComponentRef Id="cmpB77BD825E0EE360848A0E312174B8E79" />
53515392
<ComponentRef Id="cmpB1AB5620182396F5055594CB5B71DFF5" />
@@ -5583,6 +5624,7 @@
55835624
<ComponentRef Id="cmp0B156F82D73453E7932C459CED906BC3" />
55845625
<ComponentRef Id="cmp79A47006BA0B7E3D64E4815604275F77" />
55855626
<ComponentRef Id="cmp12BBC947AD240DEE262EA093791B4CFD" />
5627+
<ComponentRef Id="cmp4082D5B2D1FF8772A47657154A994C1B" />
55865628
<ComponentRef Id="cmp754B6BD77C6EC782EB88981DAFD35510" />
55875629
<ComponentRef Id="cmp32DFA22F02C3F2327513E517FC7A3BC9" />
55885630
<ComponentRef Id="cmpB86658F355E269A5F3E9B9220D5CAC57" />
@@ -5808,6 +5850,7 @@
58085850
<ComponentRef Id="cmp430193C6FCC710357C2AD0A4D74B05CB" />
58095851
<ComponentRef Id="cmp42B92586860E12CFF7E8A202F62CA257" />
58105852
<ComponentRef Id="cmp524E28243CC9788C41819437014F3F7D" />
5853+
<ComponentRef Id="cmp0165D93E848BF589D3E0D3863617F9F0" />
58115854
<ComponentRef Id="cmp63E7146E10A0CADBB072FDBAAEC2FDB2" />
58125855
<ComponentRef Id="cmp60E2E53B6F8278E75ED2802429D310E1" />
58135856
<ComponentRef Id="cmpD5B9EE259A4CDEA7EAC00BA0091C1476" />
@@ -6032,6 +6075,7 @@
60326075
<ComponentRef Id="cmp913600C952F3D3D27C7E14B7E72AA774" />
60336076
<ComponentRef Id="cmp545D8CBEAE57C9BE9C9B852D32CB58B3" />
60346077
<ComponentRef Id="cmp5543C526734BEBD6DBA8D3F4CCAC4906" />
6078+
<ComponentRef Id="cmpDA11D2F04D85A50CE393C4C23CCED63F" />
60356079
<ComponentRef Id="cmp20193DF5170BBA9B0BE967155AF5F05C" />
60366080
<ComponentRef Id="cmpB67E98F8DD3717DE55704662D73EB3DC" />
60376081
<ComponentRef Id="cmp645D8B7138F96F1053AB259E37D61D3D" />

0 commit comments

Comments
 (0)