Skip to content

Commit e28fdb5

Browse files
author
Aashish Rajaram Salokhe
committed
Reverted module version and resolve PR comments
1 parent 70fae4b commit e28fdb5

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.10.3'
15+
ModuleVersion = '0.10.2'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'

src/GuestConfiguration/GuestConfiguration/ChangeLog.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
22-
## Version 0.10.3
2321
- Support Custom policy reports retrieval through the cmd-lets
2422
- Add versioning information to the reports
2523

src/GuestConfiguration/GuestConfiguration/Common/GuestConfigurationCmdletBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,7 @@ private string GetPolicySetCategory(PolicySetDefinition initiativeDefinition)
280280
var categoryMetadataDictionary = categoryMetadata.ToObject<Dictionary<string, object>>();
281281
if (categoryMetadataDictionary.ContainsKey("category"))
282282
{
283-
var category = categoryMetadataDictionary["category"].ToString();
284-
return category;
283+
return categoryMetadataDictionary["category"].ToString();
285284
}
286285

287286
return string.Empty;

tools/ScenarioTest.ResourceManager/ScenarioTest.ResourceManager.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
<IncludeCommonTestProject>false</IncludeCommonTestProject>
99
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.Azure.Management.GuestConfiguration" Version="1.1.0" />
11+
<ItemGroup>
1312
<PackageReference Include="Moq" Version="4.7.145" />
1413
</ItemGroup>
1514

0 commit comments

Comments
 (0)