PoshCode Archive  Artifact [2c91cb94d5]

Artifact 2c91cb94d5c18d0fd158a5509b32830c4c20054f0ac31852eb2ebf548a193beb:

  • File ISE-Module-Development.ps1 — part of check-in [bb2f3cefb1] at 2018-06-10 14:22:16 on branch trunk — ISE profile code for doing module development (user: jrich523 size: 3194)

# encoding: ascii
# api: powershell
# title: ISE Module Development
# description: ISE profile code for doing module development
# version: 0.1
# type: function
# author: jrich523
# license: CC0
# function: Import-CurrentFileAsModule
# x-poshcode-id: 6893
# x-archived: 2017-05-16T10:33:40
# x-published: 2017-05-12T19:05:00
#
#
 ##################### MOD DEV ################
  Function Import-CurrentFileAsModule
{
    [cmdletbinding()]
    param()
    #get paths
    $filePath = $psise.CurrentFile.FullPath
    $folder = split-path $filePath
    #save if not already saved
    if($psise.CurrentFile.IsUntitled){Write-Error "Must save file first! Sorry didn't feel like implementing the dialog box!" -ErrorAction Stop}
    if(-not $psise.CurrentFile.IsSaved){$psise.CurrentFile.Save()}
    $global:WorkingModule = $null
    #import the folder or the file if its standalone
    try{ $Global:WorkingModule = Import-Module $folder -Force -ErrorAction Stop -PassThru -Verbose:$false | select -ExpandProperty name}
    catch{$folderFailed = $true}
    
    if($folderFailed)
    {
        try {Import-Module $filePath -Force -ErrorAction Stop -Verbose:$false}
        catch{ write-error "Not a module file!" -ErrorAction Stop}
    } 
    ##post processing
    if(Test-Path function:\PostModuleProcess)
    {
        Write-Verbose "Processing PostModuleProcess Function"
        PostModuleProcess
    }
    else
    {
        Write-Verbose "--Create a PostModuleProcess function to excute code after import--"
    }
    #Write-Verbose "Remove -verbose tag from last cmd in this file to stop verbose messaging"
}

Function Test-Module
{
    $filePath = $psise.CurrentFile.FullPath
    $folder = split-path $filePath
    #save if not already saved
    if($psise.CurrentFile.IsUntitled){Write-Error "Must save file first! Sorry didn't feel like implementing the dialog box!" -ErrorAction Stop}
    if(-not $psise.CurrentFile.IsSaved){$psise.CurrentFile.Save()}

    $cmd = "cd d:\ps;ipmo $folder"

    if(Test-Path function:\PostModuleProcess)
    {
        Write-Verbose "Processing PostModuleProcess Function"
        $cmd += ";" + (gi function:\PostModuleProcess).Definition
    }

    start powershell -ArgumentList "-noprofile -noexit -command $cmd"
}
Function Get-ModuleVariable{
param($Name)
    if($global:workingmodule)
    {
        if($name)
        {
            &(gmo $global:workingmodule){Get-Variable -Name $args[0] -Scope script -ValueOnly} $name
        }
        else
        {
            &(gmo $global:workingmodule){Get-Variable -Scope script -ValueOnly}
        }
    }
}
Function Set-ModuleVariable{
[cmdletbinding()]
param(
    [parameter(manditory=$true)]
    $Name,
    [parameter(manditory=$true)]
    $Value)
    if($global:workingmodule)
    {
        &(gmo $global:workingmodule){Set-Variable -Name $args[0] -Value $args[1] -Scope script} $Name $Value
    }
}
$null=$psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.Add('Reload Module',{Import-CurrentFileAsModule -verbose},"F6")
$null=$psISE.CurrentPowerShellTab.AddOnsMenu.Submenus.Add('Test Module',{Test-Module},"Shift+F6")