Skip to content

Commit 099b801

Browse files
author
Samuel Anudeep
committed
Merge pull request #166 from MabOneSdk/release
RI from release into dev1
2 parents d8b8821 + 803c850 commit 099b801

File tree

1,849 files changed

+742127
-362085
lines changed

Some content is hidden

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

1,849 files changed

+742127
-362085
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,5 @@ FakesAssemblies/
195195

196196
.vs/
197197
/tools/*.dll
198+
*.GhostDoc.xml
199+
pingme.txt

AzurePowershell.Test.targets

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
<HDInsightTestDebug>.\src\ServiceManagement\HDInsight\Commands.HDInsight.Test\bin\Debug\Microsoft.WindowsAzure.Commands.HDInsight.Test.dll</HDInsightTestDebug>
3131
<StorageTestDebug>.\src\Common\Storage\Commands.Storage.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Storage.Test.dll</StorageTestDebug>
3232
<KeyVaultTestDebug>.\src\ResourceManager\KeyVault\Commands.KeyVault.Test\bin\Debug\Microsoft.Azure.Commands.KeyVault.Test.dll</KeyVaultTestDebug>
33+
<DataLakeAnalyticsTestDebug>.\src\ResourceManager\DataLakeAnalytics\Commands.DataLakeAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.DataLakeAnalytics.Test.dll</DataLakeAnalyticsTestDebug>
34+
<DataLakeStoreTestDebug>.\src\ResourceManager\DataLakeStore\Commands.DataLakeStore.Test\bin\Debug\Microsoft.Azure.Commands.DataLakeStore.Test.dll</DataLakeStoreTestDebug>
3335
<UsageAggregationTestDebug>.\src\ResourceManager\UsageAggregates\Commands.UsageAggregates.Test\bin\Debug\Microsoft.Azure.Commands.UsageAggregates.Test.dll</UsageAggregationTestDebug>
3436
<TestFilter>"!Functional&#x26;!Scenario&#x26;!AzureRTScenario&#x26;!Sequential&#x26;!PIRTest&#x26;!Preview&#x26;!ADDomain&#x26;!Network&#x26;!AzureRTUpload&#x26;!AzureRTCleanUp"</TestFilter>
3537
<ScenarioTestFilter>All</ScenarioTestFilter>
@@ -80,6 +82,7 @@
8082
<XUnitTests Include=".\src\ResourceManager\ApiManagement\Commands.ApiManagement.Test\bin\Debug\Microsoft.Azure.Commands.ApiManagement.Test.dll"/>
8183
<XUnitTests Include=".\src\ResourceManager\Profile\Commands.Profile.Test\bin\Debug\Microsoft.Azure.Commands.Profile.Test.dll"/>
8284
<XUnitTests Include=".\src\ResourceManager\AzureBackup\Commands.AzureBackup.Test\bin\Debug\Microsoft.Azure.Commands.AzureBackup.Test.dll"/>
85+
<XUnitTests Include=".\src\ResourceManager\NotificationHubs\Commands.NotificationHubs.Test\bin\Debug\Microsoft.Azure.Commands.NotificationHubs.Test.dll"/>
8386
<XUnitTests Include="@(AsmXUnitTests)"/>
8487
</ItemGroup>
8588
<ItemGroup Condition=" '$(scope)' == 'ServiceManagement' ">
@@ -216,7 +219,7 @@
216219
</Target>
217220

218221
<!-- Run the scenario tests -->
219-
<Target Name="ScenarioTest" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
222+
<Target Name="ScenarioTest" DependsOnTargets="Clean;Build;BeforeRunTests">
220223
<Message Importance="high" Text="Running scenario tests..." />
221224
<MSBuild Targets="InvokeMSTest"
222225
Properties="_testAssembly=$(ScenarioTestDebug);_testSettings=$(TestSettings);_testFilter=$(ScenarioTestFilter);_testResult=$(TestOutputDirectory)\ScenarioTestDebug.trx"
@@ -261,6 +264,20 @@
261264
IncludeTraits="$(XUnitIncludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false"/>
262265
</Target>
263266

267+
<!-- Run the DataLakeAnalytics tests -->
268+
<Target Name="DataLakeAnalyticsTests">
269+
<Message Importance="high" Text="Running DataLakeAnalytics tests" />
270+
<Xunit.Runner.MSBuild.xunit Assemblies="$(DataLakeAnalyticsTestDebug)" Html="$(TestOutputDirectory)\DataLakeAnalyticsTests.xunit.dll.html" Verbose="true"
271+
IncludeTraits="$(XUnitIncludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false"/>
272+
</Target>
273+
274+
<!-- Run the DataLakeStore tests -->
275+
<Target Name="DataLakeStoreTests">
276+
<Message Importance="high" Text="Running DataLakeStore tests" />
277+
<Xunit.Runner.MSBuild.xunit Assemblies="$(DataLakeStoreTestDebug)" Html="$(TestOutputDirectory)\DataLakeStoreTests.xunit.dll.html" Verbose="true"
278+
IncludeTraits="$(XUnitIncludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false"/>
279+
</Target>
280+
264281
<!-- run the UsageAggregationTests -->
265282
<Target Name="UsageAggregationTests">
266283
<Message Importance="high" Text="Running UsageAggregates tests" />
@@ -275,7 +292,7 @@
275292
IncludeTraits="$(XUnitIncludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
276293
</Target>
277294

278-
<Target Name="RunOneSDKCIT" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
295+
<Target Name="RunOneSDKCIT" DependsOnTargets="Clean;Build;BeforeRunTests">
279296
<Message Importance="high" Text="Running CIT Scenario tests..." />
280297
<Delete Files="$(TestOutputDirectory)\RunOneSDKCITDebug.trx" />
281298
<Exec
@@ -284,47 +301,47 @@
284301
</Target>
285302

286303
<!-- Run the AzureRT tests -->
287-
<Target Name="AzureRTBVTs" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
304+
<Target Name="AzureRTBVTs" DependsOnTargets="Clean;Build;BeforeRunTests">
288305
<Message Importance="high" Text="Running AzureRT BVT tests..." />
289306
<Delete Files="$(TestOutputDirectory)\RTBVTDebug.trx" />
290307
<Exec
291308
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:BVT /resultsfile:$(TestOutputDirectory)\RTBVTDebug.trx"
292309
ContinueOnError="false" />
293310
</Target>
294311

295-
<Target Name="AzureRTOne" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
312+
<Target Name="AzureRTOne" DependsOnTargets="Clean;Build;BeforeRunTests">
296313
<Message Importance="high" Text="Running a specific tests..." />
297314
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
298315
<Exec
299316
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTSeqTestSettings) /test:$(TestName) /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug.trx"
300317
ContinueOnError="false" />
301318
</Target>
302319

303-
<Target Name="AzureRTRepeat" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
320+
<Target Name="AzureRTRepeat" DependsOnTargets="Clean;Build;BeforeRunTests">
304321
<Message Importance="high" Text="Running a specific tests..." />
305322
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
306323
<Exec
307324
Command="for /l %%x in (1, 1, $(RepeatTimes)) do MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /test:$(TestName) /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug%%x.trx"
308325
ContinueOnError="false" />
309326
</Target>
310327

311-
<Target Name="AzureRTMulti" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
328+
<Target Name="AzureRTMulti" DependsOnTargets="Clean;Build;BeforeRunTests">
312329
<Message Importance="high" Text="Running tests:" />
313330
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
314331
<Exec
315332
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTSeqTestSettings) $(TestParams) /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug.trx"
316333
ContinueOnError="false" />
317334
</Target>
318335

319-
<Target Name="AzureRTAll" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
336+
<Target Name="AzureRTAll" DependsOnTargets="Clean;Build;BeforeRunTests">
320337
<Message Importance="high" Text="Running AzureRT all tests..." />
321338
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
322339
<Exec
323340
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTSeqTestSettings) /category:$(AzureRTAllTestFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
324341
ContinueOnError="false" />
325342
</Target>
326343

327-
<Target Name="AzureRTAllFast" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
344+
<Target Name="AzureRTAllFast" DependsOnTargets="Clean;Build;BeforeRunTests">
328345
<Message Importance="high" Text="Running AzureRT all tests..." />
329346

330347
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
@@ -337,7 +354,7 @@
337354
ContinueOnError="false" />
338355
</Target>
339356

340-
<Target Name="AzureRTSeq" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
357+
<Target Name="AzureRTSeq" DependsOnTargets="Clean;Build;BeforeRunTests">
341358
<Message Importance="high" Text="Running AzureRT all tests..." />
342359

343360
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
@@ -346,7 +363,7 @@
346363
ContinueOnError="true" />
347364
</Target>
348365

349-
<Target Name="AzureRTNetwork" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
366+
<Target Name="AzureRTNetwork" DependsOnTargets="Clean;Build;BeforeRunTests">
350367
<Message Importance="high" Text="Running AzureRT all tests..." />
351368

352369
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
@@ -355,7 +372,7 @@
355372
ContinueOnError="false" />
356373
</Target>
357374

358-
<Target Name="AzureRTUploadSeq" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
375+
<Target Name="AzureRTUploadSeq" DependsOnTargets="Clean;Build;BeforeRunTests">
359376
<Message Importance="high" Text="Running AzureRT all tests..." />
360377

361378
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
@@ -364,7 +381,7 @@
364381
ContinueOnError="false" />
365382
</Target>
366383

367-
<Target Name="AzureRTPar" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
384+
<Target Name="AzureRTPar" DependsOnTargets="Clean;Build;BeforeRunTests">
368385
<Message Importance="high" Text="Running AzureRT all tests..." />
369386

370387
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
@@ -373,7 +390,7 @@
373390
ContinueOnError="false" />
374391
</Target>
375392

376-
<Target Name="AzureRTFunctional" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
393+
<Target Name="AzureRTFunctional" DependsOnTargets="Clean;Build;BeforeRunTests">
377394
<Message Importance="high" Text="Running AzureRT Functional tests..." />
378395

379396
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
@@ -382,7 +399,7 @@
382399
ContinueOnError="false" />
383400
</Target>
384401

385-
<Target Name="AzureRTScenario" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
402+
<Target Name="AzureRTScenario" DependsOnTargets="Clean;Build;BeforeRunTests">
386403
<Message Importance="high" Text="Running AzureRT Scenario tests..." />
387404

388405
<Delete Files="$(TestOutputDirectory)\RTScenarioDebug.trx" />
@@ -391,7 +408,7 @@
391408
ContinueOnError="false" />
392409
</Target>
393410

394-
<Target Name="AzureRTAllPreview" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
411+
<Target Name="AzureRTAllPreview" DependsOnTargets="Clean;Build;BeforeRunTests">
395412
<Message Importance="high" Text="Running AzureRT all tests..." />
396413
<Delete Files="$(TestOutputDirectory)\RTAddVhdDebug.trx" />
397414
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
@@ -403,23 +420,23 @@
403420
ContinueOnError="false" />
404421
</Target>
405422

406-
<Target Name="AzureRTPreview" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
423+
<Target Name="AzureRTPreview" DependsOnTargets="Clean;Build;BeforeRunTests">
407424
<Message Importance="high" Text="Running AzureRT all tests..." />
408425
<Delete Files="$(TestOutputDirectory)\RTPreviewDebug.trx" />
409426
<Exec
410427
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:Preview /resultsfile:$(TestOutputDirectory)\RTPreviewDebug.trx"
411428
ContinueOnError="false" />
412429
</Target>
413430

414-
<Target Name="AzureRTCleanUp" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
431+
<Target Name="AzureRTCleanUp" DependsOnTargets="Clean;Build;BeforeRunTests">
415432
<Message Importance="high" Text="Running AzureRT clean up tests..." />
416433
<Delete Files="$(TestOutputDirectory)\RTCleanUpDebug.trx" />
417434
<Exec
418435
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:AzureRTCleanUp /resultsfile:$(TestOutputDirectory)\RTCleanUpDebug.trx"
419436
ContinueOnError="false" />
420437
</Target>
421438

422-
<Target Name="ComputeCodeCoverage" DependsOnTargets="ForceRestorePackages;Clean;BuildDebug">
439+
<Target Name="ComputeCodeCoverage" DependsOnTargets="RestoreNugetPackages;Clean;Build">
423440
<Message Importance="high" Text="Gathering Code Coverage data from Compute tests..." />
424441
<Delete Files="Project.covarage" />
425442
<Exec

ChangeLog.md

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,67 @@
1-
## 2015.09.03 version 0.9.8
1+
* Azure SQL Database: new cmdlets for managing database threat detection policies:
2+
* Get-AzureRmSqlDatabaseThreatDetectionPolicy
3+
* Set-AzureRmSqlDatabaseThreatDetectionPolicy
4+
* Remove-AzureRmSqlDatabaseThreatDetectionPolicy
5+
* Azure RemoteApp: New cmdlets for managing stale machine accounts in AD:
6+
* Get-AzureRemoteAppVmStaleAdObject
7+
* Clear-AzureRemoteAppVmStaleAdObject
8+
9+
## 2015.11.09 version 1.0.1
10+
* Azure Compute
11+
* Added cmdlets for managing VM DiskEncryption extension
12+
* Azure KeyVault
13+
* Added EnabledForDiskEncryption and EnabledForTemplateDeployment flags to Azure Key Vault access policy
14+
* Azure Websites
15+
* Fixed issues with website management client creation
16+
17+
## 2015.11.05 version 1.0
18+
* Azure Compute
19+
* AzureRmVM cmdlet bug fixes
20+
* Fixes for DSC Extension cmdlets
21+
* Azure DataLake
22+
* First release of Azure DataLake Store and Azure DataLake Analytics cmdlets
23+
* Azure Network
24+
* Fixes to ExpressRoute cmdlets in Azure Resource Manager
25+
* Changes to BGP cmdlets
26+
* Azure Notification Hubs
27+
* First release of Azure Notification Hubs cmdlets
28+
* Azure Profile
29+
* Enable Certificate login for AD Applications
30+
* Get-AzureRmSubscription, Set-AzureRmContext search all tenants by default when no tenant is specified
31+
* Azure Redis Cache
32+
* Set-AzureRedisCache - Premium and vNet support for redis cache
33+
* New-AzureRedisCache - Premium and vNet support for redis cache
34+
* Azure Resource Manager
35+
* Automatic RP Registration
36+
* Updates for Find-Resource, Authorization cmdlets, and AzureAD cmdlets
37+
* Azure Sql
38+
* Changes to Data Masking cmdlets
39+
* Azure Storage
40+
* Added support for storage file and usage metrics in Azure Resource Manager cmdlets
41+
* Azure Websites
42+
* New and rewritten cmdlets for Azure Web Application management
43+
44+
## 2015.10.09 version 1.0 preview
45+
* Azure Resource Manager Management Cmdlets
46+
* New-AzureRmResourceGroup - Removed the template deployment parameters from this cmdlet. Template deployment will now be
47+
handled only through the New-AzureRmResourceGroupDeployment
48+
* Get-AzureRmResource - Will query directly against the Resource Provider. Removed parameters for tags from here. New cmdlets added for querying against the cache as listed below.
49+
* Get-AzureRmResourceGroup - Removed parameters for finding resources through tags. New cmdlet added for handling this
50+
functionality as mentioned below.
51+
* Find-AzureRmResource - Query against the cache.
52+
* Find-AzureRmResourceGroup - Tag parameter added for querying resource group containing specific tags.
53+
* Test-AzureResource - Cmdlet removed. Will be adding a better and reliable way to achieve this scenario which will be guaranteed to work against all Resource providers.
54+
* Test-AzureResourceGroup - Cmdlet removed. Will be adding a better and reliable way to achieve this scenario.
55+
* Get-AzureRmResourceProvider - This cmdlet has been renamed. Earlier it was called Get-AzureProvider. We have changed the output to include locations. Now you can use this to find out which providers and types are available for certain location.
56+
* Cmdlets added for policy
57+
* New-AzureRmPolicyDefinition, Get-AzureRmPolicyDefinition, Set-AzureRMPolicyDefinition, Remove-AzureRmPolicyDefinition
58+
* New-AzureRmPolicyAssignment, Get-AzureRmPolicyAssignment, Set-AzureRmPolicyAssignment, Remove-AzureRmPolicyAssignment
59+
* Consolidated Log cmdlets
60+
* Removed Get-AzureResourceLog, Get-AzureResourceGroupLog, Get-AzureProviderLog
61+
* Added new cmdlet Get-AzureLog which you can use to obtain logs at different scopes like resource group, resource, provider.
62+
* Removed Get-AzureLocation - the functionality is now provided through the Get-AzureRmResourceProvider
63+
64+
## 2015.09.03 version 0.9.8
265
* Azure Redis Cache cmdlets
366
* New-AzureRMRedisCache - 'RedisVersion' parameter is deprecated.
467
* Azure Compute (ARM) Cmdlets
@@ -51,6 +114,13 @@
51114
* Set-AzureVMSqlServerExtension
52115
* Get-AzureVMSqlServerExtension
53116
* Remove-AzureVMSqlServerExtension
117+
* Azure SQL Database Index Recommendation Cmdlets
118+
* Get-AzureSqlDatabaseIndexRecommendations
119+
* Start-AzureSqlDatabaseExecuteIndexRecommendation
120+
* Stop-AzureSqlDatabaseExecuteIndexRecommendation
121+
* Azure SQL Database and Server Upgrade Hints Cmdlets
122+
* Get-AzureSqlDatabaseUpgradeHint
123+
* Get-AzureSqlServerUpgradeHint
54124

55125
## 2015.08.17 version 0.9.7
56126
* Azure Profile cmdlets

build.proj

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
<CmdletSolutionsToBuild Include=".\src\ServiceManagement\ServiceManagement.sln"
5252
Condition=" '$(Scope)' == 'ServiceManagement' or '$(Scope)' == 'AzureStorage' "/>
5353
<SetupSln Include=".\setup\azurepowershell.sln" />
54-
<SetupPowershellGetSln Include=".\setup-powershellget\powershellget.sln" />
5554
</ItemGroup>
5655

5756
<!--
@@ -80,13 +79,6 @@
8079
Properties="Configuration=$(Configuration);Platform=Any CPU"
8180
ContinueOnError="false" />
8281

83-
<MSBuild
84-
Projects="@(SetupPowershellGetSln)"
85-
Targets="Clean"
86-
Properties="Configuration=$(Configuration);Platform=Any CPU"
87-
ContinueOnError="false"
88-
Condition=" '$(Scope)' == 'all' "/>
89-
9082
<!-- Delete the publish files -->
9183
<Message Importance="high" Text="Cleaning publish files..." ContinueOnError="false" />
9284
<ItemGroup>
@@ -161,14 +153,6 @@
161153

162154
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
163155

164-
<Message Importance="high" Text="Building Setup..." />
165-
<MSBuild
166-
Projects="@(SetupPowershellGetSln)"
167-
Targets="Build"
168-
Properties="Configuration=$(Configuration);Platform=Any CPU"
169-
ContinueOnError="false"
170-
Condition=" '$(Scope)' == 'all' "/>
171-
172156
<MSBuild
173157
Projects="@(SetupSln)"
174158
Targets="Build"
@@ -203,8 +187,6 @@
203187
</GetFrameworkSdkPath>
204188

205189
<!-- Copying shortcut to be signed -->
206-
<Copy SourceFiles="$(LibraryRoot)setup-powershellget\Setup\ShortcutStartup.ps1"
207-
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
208190
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psd1"
209191
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
210192
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psm1"
@@ -214,6 +196,8 @@
214196
<DelaySignedAssembliesToSign Include="$(LibrarySourceFolder)\Package\$(Configuration)\**\Microsoft*Azure*Commands*.dll" />
215197
<DelaySignedAssembliesToSign Include="$(LibrarySourceFolder)\Package\$(Configuration)\**\Microsoft.Azure.Common.Extensions.dll" />
216198
<ScriptsToSign Include="$(LibrarySourceFolder)\Package\$(Configuration)\**\*.ps1" />
199+
<ScriptsToSign Include="$(LibrarySourceFolder)\Package\$(Configuration)\**\*.psm1" />
200+
<ScriptsToSign Include="$(LibrarySourceFolder)\Package\$(Configuration)\**\*.ps1xml" />
217201
</ItemGroup>
218202

219203
<Message Importance="high" Text="$(LibrarySourceFolder)\Package\$(Configuration) does not contains any files to sign. Code sign will skip."
@@ -258,8 +242,6 @@
258242
Condition="!$(DelaySign) and '@(DelaySignedAssembliesToSign)' != ''"/>
259243

260244
<!-- Copying signed shortcut back -->
261-
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\ShortcutStartup.ps1"
262-
DestinationFolder="$(LibraryRoot)setup-powershellget\Setup" />
263245
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psd1"
264246
DestinationFolder="$(LibraryRoot)tools\AzureRM" />
265247
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psm1"

0 commit comments

Comments
 (0)