ParseJavaPropertyFiles.psm1


<#
.SYNOPSIS
   A powershell module to allow for the modifying of properties in a Java properties file
.DESCRIPTION
   A powershell module to allow for the modifying of properties in a Java properties file
 
#>


#import the AWS Powershell Module for .Net Core
Import-Module AWSPowerShell.NetCore

# Get the path to the function files...
$functionpath = $PSScriptRoot + "\functions\"

# Get a list of all the function file names...
$functionlist = Get-ChildItem -Path $functionpath -Name 

# Loop over all the files and dot source them into memory..


foreach ($function in $functionlist) 
{
   Write-Host "Importing "($functionpath + $function)
    . ($functionpath + $function) 
}