Leacme WOLolo is a cross-platform desktop application able to run on Windows, MacOS, and Linux. It is build using Microsoft .NET platform and Avalonia UI framework.
This application features the ability to send Wake-on-LAN packets to the network and turn on devices that are listening for these packets based on their IP.
The desktop application can be compiled into an executable with .NET 3.1 by navigating to Leacme.App.WOLolo folder and running:
dotnet publish --configuration Release -p:CopyOutputSymbolsToPublishDirectory=false -p:PublishSingleFile=true -p:LeacmeOutputType=winexe --runtime win-x64
Note: win-x64 can be replaced with other runtimes such as linux-x64, or osx-x64, for more runtimes see RID Catalog
The application will query the network for any devices in the ARP table and store them in the database. On subsequent runs, you can refresh the list manually, as well as try adding the IP address of the device manually if it is not showing up in the list (the device must be online and reachable for this).
The applicatin library can also be build and used separately by navigating to Leacme.Lib.WOLolo folder and running dotnet build. This will create a .dll library that can be copied into the directory where your .csproj is located. Be sure as well to add the following line to your .csproj file to point to the location of the library:
<ItemGroup><Reference Include="Leacme.Lib.WOLolo.dll"><HintPath>Leacme.Lib.WOLolo.dll</HintPath></Reference></ItemGroup>
It can then be added and used within your project with var library = new Leacme.Lib.WOLolo.Library();
The author can be contacted via the contact form on their website http://leac.me
View LICENSE.md for more information
