Skip to content

Commit

Permalink
Move documentation to new domain
Browse files Browse the repository at this point in the history
  • Loading branch information
steviecoaster committed Feb 21, 2024
1 parent 900441a commit f78d4ea
Show file tree
Hide file tree
Showing 88 changed files with 87 additions and 104 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ choco install NexuShell -y -s https://community.chocolatey.org/api/v2

### Documentation

Information about currently supported functions and their usage can be found on the [docs](https://steviecoaster.github.io/NexuShell/) site.
Information about currently supported functions and their usage can be found on the [docs](https://nexushell.dev/) site.
2 changes: 1 addition & 1 deletion src/NexuShell.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
} # End of PrivateData hashtable

# HelpInfo URI of this module
HelpInfoURI = 'https://steviecoaster.github.io/NexuShell/'
HelpInfoURI = 'https://nexushell.dev/'
}
2 changes: 1 addition & 1 deletion src/nuget/NexuShell.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<projectSourceUrl>https://github.com/steviecoaster/NexuShell</projectSourceUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/steviecoaster/NexuShell@develop/logo/nexushell.svg</iconUrl>
<copyright>(c) 2021 steviecoaster. All rights reserved.</copyright>
<docsUrl>https://steviecoaster.github.io/NexuShell/</docsUrl>
<docsUrl>https://nexushell.dev/</docsUrl>
<bugTrackerUrl>https://github.com/steviecoaster/NexuShell/issues</bugTrackerUrl>
<licenseUrl>https://raw.githubusercontent.com/steviecoaster/NexuShell/main/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
2 changes: 1 addition & 1 deletion src/public/APIKey/Get-NexusNuGetApiKey.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Get-NexusNuGetApiKey {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Security/API%20Key/Get-NexusNuGetApiKey/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Security/API%20Key/Get-NexusNuGetApiKey/')]
Param(
[Parameter(Mandatory)]
[PSCredential]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Anonymous/Get-NexusAnonymousAuthStatus.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Get-NexusAnonymousAuthStatus {
.EXAMPLE
Get-NexusAnonymousAuth
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusAnonymousAuthStatus/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusAnonymousAuthStatus/')]
Param()

begin {
Expand Down
2 changes: 1 addition & 1 deletion src/public/Anonymous/Set-NexusAnonymousAuth.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Set-NexusAnonymousAuth {
.EXAMPLE
Set-NexusAnonymousAuth -Enabled
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Set-NexusAnonymousAuth/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Set-NexusAnonymousAuth/')]
Param(
[Parameter()]
[Switch]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Asset/Get-NexusAsset.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Get-NexusAsset {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
[CmdletBinding(HelpUri='https://nexushell.dev/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
Param(
[Parameter(ParameterSetName="repo",Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Asset/Remove-NexusAsset.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Remove-NexusAsset {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
Param(
[Parameter(Mandatory)]
[String[]]
Expand Down
2 changes: 1 addition & 1 deletion src/public/BlobStore/Get-NexusBlobStore.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Get-NexusBlobStore {
.EXAMPLE
Get-NexusBlobStore -Name TreasureBlob -Type file -Detailed
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
Param(
[Parameter(Mandatory, ParameterSetName = "Name")]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/BlobStore/Get-NexusBlobStoreQuota.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Get-NexusBlobStoreQuota {
.EXAMPLE
Get-NexusBlobStoreQuota -Name TestBlob
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStoreQuota/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusBlobStoreQuota/')]
Param(
[Parameter(Mandatory)]
[String[]]
Expand Down
2 changes: 1 addition & 1 deletion src/public/BlobStore/New-NexusBlobStore.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function New-NexusBlobStore {
.NOTES
S3 buckets are currently not supported by the cmdlet until I can get S3 for testing
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/New-NexusBlobStore/')]
[CmdletBinding(HelpUri='https://nexushell.dev/New-NexusBlobStore/')]
Param(
[Parameter(Mandatory,ParameterSetName="File")]
[Parameter(Mandatory,ParameterSetName="S3")]
Expand Down
2 changes: 1 addition & 1 deletion src/public/BlobStore/Remove-NexusBlobStore.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Remove-NexusBlobStore {
.EXAMPLE
Remove-NexusBlobStore -Name TreasureBlob -Force
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Remove-NexusBlobStore/',SupportsShouldProcess, ConfirmImpact = 'High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Remove-NexusBlobStore/',SupportsShouldProcess, ConfirmImpact = 'High')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/BlobStore/Update-NexusFileBlobStore.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Update-NexusFileBlobStore {
# Sets the default blobstore to the location listed
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Update-NexusFileBlobStore/', SupportsShouldProcess, ConfirmImpact = 'High')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Update-NexusFileBlobStore/', SupportsShouldProcess, ConfirmImpact = 'High')]
param(
[Parameter(Mandatory)]
[string]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Certificate/Get-NexusCertificate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Get-NexusCertificate {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusCertificate/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusCertificate/')]
Param()

begin {
Expand Down
2 changes: 1 addition & 1 deletion src/public/Certificate/Remove-NexusCertificate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Remove-NexusCertificate {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Remove-NexusCertificate/',SupportsShouldProcess,ConfirmImpact='High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Remove-NexusCertificate/',SupportsShouldProcess,ConfirmImpact='High')]
Param(
[Alias('Id')]
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Component/Get-NexusComponent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Get-NexusComponent {
.EXAMPLE
Get-NexusComponent -Id RGV2OmM2MGJjNmI5NjEyZjQ3ZDM5ZTc2ZmMwNTI1ODg0M2Rj
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Components/Get-NexusComponent/', DefaultParameterSetName = "repo")]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Components/Get-NexusComponent/', DefaultParameterSetName = "repo")]
Param(
[Parameter(ParameterSetName = "repo", Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Component/Remove-NexusComponent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Remove-NexusComponent {
.EXAMPLE
Get-NexusComponent -Repository dev | Where-Object {$_.Name -eq "somePackage" -and $_.Version "1.2.3"} | Remove-NexusComponent -Confirm:$false
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Remove-NexusComponent/', SupportsShouldProcess, ConfirmImpact='High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Assets/Remove-NexusComponent/', SupportsShouldProcess, ConfirmImpact='High')]
Param(
[Parameter(Mandatory, ValueFromPipelineByPropertyName)]
[String[]]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Connect-NexusServer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Connect-NexusServer {
.EXAMPLE
Connect-NexusServer -Hostname nexus.fabrikam.com -Credential $Cred -UseSSL -Sslport 443
#>
[cmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Connect-NexusServer/')]
[cmdletBinding(HelpUri='https://nexushell.dev/Connect-NexusServer/')]
param(
[Parameter(Mandatory,Position=0)]
[Alias('Server')]
Expand Down
2 changes: 1 addition & 1 deletion src/public/ContentSelector/Get-NexusContentSelector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Get-NexusContentSelector {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Security/Content%20Selectors/Get-NexusContentSelector/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Security/Content%20Selectors/Get-NexusContentSelector/')]
Param(
[Parameter()]
[String[]]
Expand Down
2 changes: 1 addition & 1 deletion src/public/ContentSelector/New-NexusContentSelector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function New-NexusContentSelector {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Security/Content%20Selectors/New-NexusContentSelector/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Security/Content%20Selectors/New-NexusContentSelector/')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/ContentSelector/Remove-NexusContentSelector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Remove-NexusContentSelector {
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Security/Content%20Selectors/Remove-NexusContentSelector/',SupportsShouldProcess,ConfirmImpact='High')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Security/Content%20Selectors/Remove-NexusContentSelector/',SupportsShouldProcess,ConfirmImpact='High')]
Param(
[Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[ArgumentCompleter( {
Expand Down
2 changes: 1 addition & 1 deletion src/public/ContentSelector/Set-NexusContentSelector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function Set-NexusContentSelector {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Security/Content%20Selectors/Set-NexusContentSelector/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Security/Content%20Selectors/Set-NexusContentSelector/')]
Param(
[Parameter(Mandatory)]
[ArgumentCompleter({
Expand Down
2 changes: 1 addition & 1 deletion src/public/Format/Get-NexusFormat.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Get-NexusFormat {
.EXAMPLE
Get-NexusFormat -RepositoryFormat nuget
#>
[Cmdletbinding(HelpUri='https://steviecoaster.github.io/NexuShell/Formats/Get-NexusFormat/')]
[Cmdletbinding(HelpUri='https://nexushell.dev/Formats/Get-NexusFormat/')]
Param(
[Parameter()]
[Alias('Format')]
Expand Down
2 changes: 1 addition & 1 deletion src/public/License/Get-NexusLicenseStatus.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Get-NexusLicenseStatus {
.EXAMPLE
Get-NexusLicenseStatus
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusLicenseStatus/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusLicenseStatus/')]
Param()
begin {

Expand Down
2 changes: 1 addition & 1 deletion src/public/License/Install-NexusLicense.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Install-NexusLicense {
.EXAMPLE
Install-NexusLicense -NexusLicense 'C:\temp\sonatype-repository-manager.lic'
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Install-NexusLicense/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Install-NexusLicense/')]
Param(
[Parameter(Mandatory)]
[ValidateScript({ Test-Path $_})]
Expand Down
2 changes: 1 addition & 1 deletion src/public/License/Remove-NexusLicense.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Remove-NexusLicense {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Remove-NexusLicense/',SupportsShouldProcess,ConfirmImpact='High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Remove-NexusLicense/',SupportsShouldProcess,ConfirmImpact='High')]
Param(
[Parameter()]
[Switch]
Expand Down
2 changes: 1 addition & 1 deletion src/public/ReadOnly/Get-NexusReadOnlyState.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Get-NexusReadOnlyState {
.EXAMPLE
Get-NexusReadOnlyState
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusReadOnlyState/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Get-NexusReadOnlyState/')]
Param()
begin {

Expand Down
2 changes: 1 addition & 1 deletion src/public/ReadOnly/Set-NexusReadOnlyMode.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Set-NexusReadOnlyMode {
.EXAMPLE
Set-NexusReadOnlyMode -Disable
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Set-NexusReadOnlyMode/',SupportsShouldProcess, DefaultParameterSetName = "Enable", ConfirmImpact = 'High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Set-NexusReadOnlyMode/',SupportsShouldProcess, DefaultParameterSetName = "Enable", ConfirmImpact = 'High')]
Param(
[Parameter(Mandatory, ParameterSetName = "Enable")]
[Switch]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Realm/Disable-NexusRealm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Disable-NexusRealm {
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Disable-NexusRealm/',SupportsShouldProcess,ConfirmImpact = 'High')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Disable-NexusRealm/',SupportsShouldProcess,ConfirmImpact = 'High')]
Param(
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[ArgumentCompleter( {
Expand Down
2 changes: 1 addition & 1 deletion src/public/Realm/Enable-NexusRealm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Enable-NexusRealm {
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Enable-NexusRealm/')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Enable-NexusRealm/')]
Param(
[Parameter(Mandatory)]
[ArgumentCompleter({
Expand Down
2 changes: 1 addition & 1 deletion src/public/Realm/Get-NexusRealm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Get-NexusRealm {
.EXAMPLE
Get-NexusRealm -Active
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/Get-NexusRealm/')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/Get-NexusRealm/')]
Param(
[Parameter()]
[Switch]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function Get-NexusCleanupPolicy {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Repository/Cleanup%20Policy/Get-NexusCleanupPolicy/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Repository/Cleanup%20Policy/Get-NexusCleanupPolicy/')]
Param(
[Parameter()]
[Alias('Policy','CleanupPolicy')]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function New-NexusCleanupPolicy {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Repository/Cleanup%20Policy/New-NexusCleanupPolicy/',DefaultParameterSetName = "Default")]
[CmdletBinding(HelpUri='https://nexushell.dev/Repository/Cleanup%20Policy/New-NexusCleanupPolicy/',DefaultParameterSetName = "Default")]
Param(
[Parameter(Mandatory)]
[Parameter(ParameterSetName = 'Age', Mandatory)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Remove-NexusCleanupPolicy {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Repository/Cleanup%20Policy/Remove-NexusCleanupPolicy/',SupportsShouldProcess, ConfirmImpact = 'High')]
[CmdletBinding(HelpUri='https://nexushell.dev/Repository/Cleanup%20Policy/Remove-NexusCleanupPolicy/',SupportsShouldProcess, ConfirmImpact = 'High')]
Param(
[Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[ArgumentCompleter( {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Set-NexusCleanupPolicy {
.NOTES
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Repository/Cleanup%20Policy/Set-NexusCleanupPolicy/')]
[CmdletBinding(HelpUri='https://nexushell.dev/Repository/Cleanup%20Policy/Set-NexusCleanupPolicy/')]
Param(
[Parameter(Mandatory)]
[ArgumentCompleter( {
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/Get-NexusRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function Get-NexusRepository {
.EXAMPLE
Get-NexusRepository -Name CompanyNugetPkgs
#>
[cmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusRepository/',DefaultParameterSetName="default")]
[cmdletBinding(HelpUri='https://nexushell.dev/Get-NexusRepository/',DefaultParameterSetName="default")]
param(
[Parameter(ParameterSetName="Format",Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusAptHostedRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function New-NexusAptHostedRepository {
New-NexusAptHostedRepository @RepoParams
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/New-NexusAptHostedRepository/')]
[CmdletBinding(HelpUri='https://nexushell.dev/New-NexusAptHostedRepository/')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusAptProxyRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function New-NexusAptProxyRepository {
.NOTES
General notes
#>
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/New-NexusAptProxyRepository/',DefaultParameterSetName = 'Hosted')]
[CmdletBinding(HelpUri='https://nexushell.dev/New-NexusAptProxyRepository/',DefaultParameterSetName = 'Hosted')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusBowerGroupRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function New-NexusBowerGroupRepository {
.NOTES
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusBowerGroupRepository/')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusBowerGroupRepository/')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusBowerHostedRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function New-NexusBowerHostedRepository {
.NOTES
General notes
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusBowerHostedRepository/')]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusBowerHostedRepository/')]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusBowerProxyRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function New-NexusBowerProxyRepository {
New-NexusBowerProxyRepository @ProxyParameters
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusBowerProxyRepository/',DefaultParameterSetname="Default")]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusBowerProxyRepository/',DefaultParameterSetname="Default")]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusCocoaPodProxyRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function New-NexusCocoaPodProxyRepository {
New-NexusCocoaPodProxyRepository @ProxyParameters
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusCocoaPodProxyRepository/',DefaultParameterSetname="Default")]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusCocoaPodProxyRepository/',DefaultParameterSetname="Default")]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusConanProxyRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $ProxyParameters = @{
New-NexusConanProxyRepository @ProxyParameters
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusConanProxyRepository/',DefaultParameterSetname="Default")]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusConanProxyRepository/',DefaultParameterSetname="Default")]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
2 changes: 1 addition & 1 deletion src/public/Repository/New-NexusCondaProxyRepository.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $ProxyParameters = @{
New-NexusCondaProxyRepository @ProxyParameters
#>
[CmdletBinding(HelpUri = 'https://steviecoaster.github.io/NexuShell/New-NexusCondaProxyRepository/',DefaultParameterSetname="Default")]
[CmdletBinding(HelpUri = 'https://nexushell.dev/New-NexusCondaProxyRepository/',DefaultParameterSetname="Default")]
Param(
[Parameter(Mandatory)]
[String]
Expand Down
Loading

0 comments on commit f78d4ea

Please sign in to comment.