Skip to content

Commit e64d120

Browse files
authored
Merge pull request #68 from microsoftgraph/po/ConnectGraphHelp
Surface -CertificateTumbprint in Get-Help.
2 parents 16854de + f26b446 commit e64d120

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/Authentication/Authentication/Cmdlets/ConnectGraph.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ public class ConnectGraph : PSCmdlet
2424
public string ClientId { get; set; }
2525

2626
[Parameter(ParameterSetName = Constants.AppParameterSet, Position = 2)]
27+
public string CertificateName { get; set; }
28+
29+
[Parameter(ParameterSetName = Constants.AppParameterSet, Position = 3)]
2730
public string CertificateThumbprint { get; set; }
2831

29-
[Parameter(ParameterSetName = Constants.AppParameterSet, Position = 2)]
30-
public string CertificateName { get; set; }
3132

32-
[Parameter(Position = 3)]
33+
[Parameter(Position = 4)]
3334
public string TenantId { get; set; }
3435

35-
[Parameter(Position = 4)]
36+
[Parameter(Position = 5)]
3637
public SwitchParameter ForceRefresh { get; set; }
3738

3839
protected override void BeginProcessing()

src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<metadata>
4-
<version>0.1.3</version>
4+
<version>0.1.4</version>
55
<id>Microsoft.Graph.Authentication</id>
66
<description>Microsoft Graph PowerShell authentication module</description>
77
<authors>Microsoft</authors>

src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft
55
#
6-
# Generated on: 11/11/2019
6+
# Generated on: 12/12/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = '.\bin\Microsoft.Graph.Authentication.dll'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.3'
15+
ModuleVersion = '0.1.4'
1616

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

0 commit comments

Comments
 (0)