Skip to content

Commit f78d4ea

Browse files
committed
Move documentation to new domain
1 parent 900441a commit f78d4ea

File tree

88 files changed

+87
-104
lines changed

Some content is hidden

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

88 files changed

+87
-104
lines changed

README.md

Lines changed: 1 addition & 1 deletion

src/NexuShell.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
} # End of PrivateData hashtable
5151

5252
# HelpInfo URI of this module
53-
HelpInfoURI = 'https://steviecoaster.github.io/NexuShell/'
53+
HelpInfoURI = 'https://nexushell.dev/'
5454
}

src/nuget/NexuShell.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<projectSourceUrl>https://github.com/steviecoaster/NexuShell</projectSourceUrl>
1313
<iconUrl>https://cdn.jsdelivr.net/gh/steviecoaster/NexuShell@develop/logo/nexushell.svg</iconUrl>
1414
<copyright>(c) 2021 steviecoaster. All rights reserved.</copyright>
15-
<docsUrl>https://steviecoaster.github.io/NexuShell/</docsUrl>
15+
<docsUrl>https://nexushell.dev/</docsUrl>
1616
<bugTrackerUrl>https://github.com/steviecoaster/NexuShell/issues</bugTrackerUrl>
1717
<licenseUrl>https://raw.githubusercontent.com/steviecoaster/NexuShell/main/LICENSE</licenseUrl>
1818
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/public/APIKey/Get-NexusNuGetApiKey.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function Get-NexusNuGetApiKey {
1515
.NOTES
1616
1717
#>
18-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Security/API%20Key/Get-NexusNuGetApiKey/')]
18+
[CmdletBinding(HelpUri='https://nexushell.dev/Security/API%20Key/Get-NexusNuGetApiKey/')]
1919
Param(
2020
[Parameter(Mandatory)]
2121
[PSCredential]

src/public/Anonymous/Get-NexusAnonymousAuthStatus.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Get-NexusAnonymousAuthStatus {
99
.EXAMPLE
1010
Get-NexusAnonymousAuth
1111
#>
12-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusAnonymousAuthStatus/')]
12+
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusAnonymousAuthStatus/')]
1313
Param()
1414

1515
begin {

src/public/Anonymous/Set-NexusAnonymousAuth.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function Set-NexusAnonymousAuth {
1515
.EXAMPLE
1616
Set-NexusAnonymousAuth -Enabled
1717
#>
18-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Set-NexusAnonymousAuth/')]
18+
[CmdletBinding(HelpUri='https://nexushell.dev/Set-NexusAnonymousAuth/')]
1919
Param(
2020
[Parameter()]
2121
[Switch]

src/public/Asset/Get-NexusAsset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Get-NexusAsset {
2020
2121
.NOTES
2222
#>
23-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
23+
[CmdletBinding(HelpUri='https://nexushell.dev/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
2424
Param(
2525
[Parameter(ParameterSetName="repo",Mandatory)]
2626
[String]

src/public/Asset/Remove-NexusAsset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Remove-NexusAsset {
2020
2121
.NOTES
2222
#>
23-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
23+
[CmdletBinding(HelpUri='https://nexushell.dev/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
2424
Param(
2525
[Parameter(Mandatory)]
2626
[String[]]

src/public/BlobStore/Get-NexusBlobStore.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Get-NexusBlobStore {
2424
.EXAMPLE
2525
Get-NexusBlobStore -Name TreasureBlob -Type file -Detailed
2626
#>
27-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
27+
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
2828
Param(
2929
[Parameter(Mandatory, ParameterSetName = "Name")]
3030
[String]

src/public/BlobStore/Get-NexusBlobStoreQuota.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function Get-NexusBlobStoreQuota {
1212
.EXAMPLE
1313
Get-NexusBlobStoreQuota -Name TestBlob
1414
#>
15-
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStoreQuota/')]
15+
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusBlobStoreQuota/')]
1616
Param(
1717
[Parameter(Mandatory)]
1818
[String[]]

0 commit comments

Comments
 (0)