DatKyle
DatKyle
I've run into this issue recently, the issue is with the plugin orders in [Editor.ts](https://github.com/sibiraj-s/ngx-editor/blob/cb7c19b79f817f4514a68dd8a2ae633051dd26a9/projects/ngx-editor/src/lib/Editor.ts#L118) And specifically with the KeyboardShortcut plugin, as it inserts a new line and returns true...
I think the Year version (2014, 2017, 2019) is best as it is more user friendly. If a user ran Get-DcnImage they could see that an image requires SQL 2017,...
I've had a look and resolved the warning, but I've run into some logic I'm not sure about. The logic [here](https://github.com/sqlcollaborative/dbaclone/blob/207370c707e6063665188af33b87fbf6862f8c4e/functions/image/New-DcnImage.ps1#L275-L306) tries to convert the Network Path into a local...
It is not true debugging but you can specify `-Verbose` which gives you a good indication of whats happening. It is what I have been using to identify and resolve...
I've done some digging and found an old Reddit post by yourself (@blitzmann): [Reddit - VSCode: How to debug a function inside a module](https://www.reddit.com/r/PowerShell/comments/f12om8/vscode_how_to_debug_a_function_inside_a_module/) Based on the top comment about...
@blitzmann have you had a chance to try out the above?
For the time being I'm using the below code: ``` Get-DcnImage | Select-Object -Unique -Property DatabaseName | ForEach-Object { Remove-DcnImage -Database $_.DatabaseName -Unused -keep 1 } ```
The main issue is when I run `Remove-dcnImage` with the 2 params I would expect it to apply per database, not to all images. I have 10 images all for...