Igor

Results 8 comments of Igor

I know its an old app, but its good one. I would also support the idea of persistent snapshots after reboot. Implementation can be something like this. On each save...

I added some my findings into duplicated issue #485, so I am copying them here. Steps to reproduce ------------------ ```powershell Install-Module FIFA2018 Import-Module FIFA2018 ``` Expected behavior ----------------- Module is...

Root cause for this behavior seems to be **case-sensitive** search in Linux. Module manifest should be saved in `//.psd1`. However some modules have directory name and manifest name with different...

Ok, correct in given example. But here is my full use case ```PowerShell # MyCommand.ps1 function Command03 {param([string]$Value)} ``` I want to check if I have proper documentation during build...

And now that I think more of it, this looks like PowerShell issue... ```PowerShell # define standalone and module function function MyComm {} New-Module -ScriptBlock {function FindMyComm {Get-Command MyComm}} |...

Issue in PowerShell repository is opened and linked above. For my use case I implemented workaround to define my function as **global**. Then all works fine. Would this be worth...

duplicate with #739