Skip to content

Commit 16cb1dc

Browse files
committed
Release 1.174.2025
1 parent 0ddf165 commit 16cb1dc

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Functions/GenXdev.FileSystem/Find-Item.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -950,8 +950,8 @@ function Find-Item {
950950
else {
951951
# output relative path of the found item
952952
Microsoft.PowerShell.Utility\Write-Information "Resolving relative path with base: $relativeBasePath"
953-
$rp = Microsoft.PowerShell.Management\Resolve-Path -LiteralPath $itemInfo.FullName `
954-
-Relative -RelativeBasePath:$relativeBasePath
953+
$rp = Microsoft.PowerShell.Management\Resolve-Path -LiteralPath:($itemInfo.FullName) -Relative -RelativeBasePath:$relativeBasePath
954+
Microsoft.PowerShell.Utility\Write-Verbose "Microsoft.PowerShell.Management\Resolve-Path -LiteralPath '$($itemInfo.FullName)' -Relative -RelativeBasePath:'$relativeBasePath'"
955955

956956
Microsoft.PowerShell.Utility\Write-Information "Relative path: $rp"
957957
Microsoft.PowerShell.Utility\Write-Output $rp

GenXdev.FileSystem.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: genXdev
55
#
6-
# Generated on: 03/04/2025
6+
# Generated on: 09/05/2025
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = 'GenXdev.FileSystem.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.172.2025'
15+
ModuleVersion = '1.174.2025'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core'
@@ -33,7 +33,7 @@ Copyright = 'Copyright 2021-2025 GenXdev'
3333
Description = 'A Windows PowerShell module for basic and advanced file management tasks'
3434

3535
# Minimum version of the PowerShell engine required by this module
36-
PowerShellVersion = '7.5.0'
36+
PowerShellVersion = '7.5.1'
3737

3838
# Name of the PowerShell host required by this module
3939
# PowerShellHostName = ''
@@ -45,7 +45,7 @@ PowerShellVersion = '7.5.0'
4545
# DotNetFrameworkVersion = ''
4646

4747
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48-
ClrVersion = '9.0.1'
48+
ClrVersion = '9.0.4'
4949

5050
# Processor architecture (None, X86, Amd64) required by this module
5151
ProcessorArchitecture = 'Amd64'

Tests/GenXdev.FileSystem/Find-Item.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ $message
324324

325325
Pester\It 'Should match the pattern' {
326326

327-
$found = @(GenXdev.FileSystem\Find-Item -SearchMask "$PSScriptRoot\..\..\..\..\..\**\Genx*stem\1.172.2025\Functions\GenXdev.FileSystem\*.ps1" -PassThru | Microsoft.PowerShell.Utility\Select-Object -ExpandProperty FullName)
327+
$found = @(GenXdev.FileSystem\Find-Item -SearchMask "$PSScriptRoot\..\..\..\..\..\**\Genx*stem\1.174.2025\Functions\GenXdev.FileSystem\*.ps1" -PassThru | Microsoft.PowerShell.Utility\Select-Object -ExpandProperty FullName)
328328

329329
$found | Pester\Should -Contain (GenXdev.FileSystem\Expand-Path "$PSScriptRoot\..\..\Functions\GenXdev.FileSystem\_AssureTypes.ps1")
330330
$found | Pester\Should -Contain (GenXdev.FileSystem\Expand-Path "$PSScriptRoot\..\..\Functions\GenXdev.FileSystem\AssurePester.ps1")

0 commit comments

Comments
 (0)