• 0.0.1-pre-release+69e0f824 69e0f824de

    pascal_nulah released this 2026-09-04 13:39:55 +10:00 | -56 commits to dev since this release

    Pre-release version for GitRepoRegistration cmdlets.

    Drop the folder in the same location as your $profile script, then do any of the following:

    Import the module every PowerShell session

    Add either of the following options to your $profile script

    # Script setup style: Using the setup script to import as needed (in future this will do more such as setting up custom prompts and aliases)
    . "$PSScriptRoot/NulahModule/NulahPowershell.ps1"
    SetupNulahPowershell
    # Just the module: Use the following to just import just the powershell module
    Import-Module -Name "$PSScriptRoot/NulahModule/PowershellModule"
    

    Adding either of those will provide the following cmdlets

    PS > Get-Command -Module "PowershellModule"
    
    CommandType     Name                                               Version    Source
    -----------     ----                                               -------    ------
    Cmdlet          Get-Calendar                                       0.0.1      PowershellModule
    Cmdlet          Get-GitRepoRegistration                            0.0.1      PowershellModule
    Cmdlet          New-GitRepoRegistration                            0.0.1      PowershellModule
    Cmdlet          Remove-GitRepoRegistration                         0.0.1      PowershellModule
    Cmdlet          Show-GitRepoRegistration                           0.0.1      PowershellModule
    

    Building from source

    Run either build.ps1 from the root directory, or build and run Build.csproj. The build will output the location of the final bundle zip as part of its logs.

    Refs: feat: Add GitRepoRegistration cmdlets #5

    Downloads