Files
dan_clark@outlook.com 5ba1e5a63b Added app configuration
2022-03-27 19:35:25 +01:00

19 lines
408 B
C#

using WindowsShortcutFactory;
namespace TheXamlGuy.TaskbarGroup.Core
{
public class CreateShortcutHandler : IMessageHandler<CreateShortcut>
{
public void Handle(CreateShortcut message)
{
using var shortcut = new WindowsShortcut
{
Path = message.Path,
};
shortcut.Save(@"C:\temp\MyShortcut.lnk");
}
}
}