Tyler James Leonhardt

Results 627 comments of Tyler James Leonhardt

So the library name will have the end version and then the version will be the initial version? Am I understanding that right? Or will we version based on the...

I think it would be nice to have something like this - but I also want it to be generic enough. Also, not everyone uses Visual Studio so we'd want...

We could also do that! I know that repos tend to include config files for multiple editors.

It's a good question but it has a complicated answer. Ideally what you would do is go through all the dlls that are sitting in `$PSHOME` and all the dlls...

It looks like linux supports it as a `hint` http://www.galago-project.org/specs/notification/0.9/x344.html ``` "sound-file" | string | The path to a sound file to play when the notification pops up. ``` looks...

I did the work in PSNotifySend to expose a `-SoundFile` so that should be ready :)

Also, I noticed that `notify-send` has a `--category` (which is exposed in `PSNotifySend`) that gives you a bunch of sounds for different notification types: ``` "device","device.added","device.error","device.removed", "email","email.arrived","email.bounced", "im","im.error","im.received", "network","network.connected","network.disconnected","network.error", "presence","presence.offline","presence.online",...

We can add some code to the `psm1` that checks to make sure those on Windows are at least on Windows 10: ```powershell [System.Environment]::OSVersion.Version.Major -ge 10 ```

Interesting... What OS is this? This module doesn't do much beyond turning around and calling into another PowerShell module per-platform.