minus-squareNiftyBeaks@lemm.eetoProgramming@beehaw.org•How do I put a .NET console app on my NAS and run it?linkfedilinkarrow-up1·2 years agoIs this something you want to run manually or automatically? If you want to run automatically either look into dotnet service workers, or run the console app with a crontab. You can use https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-publish to create an executable. Then you would just transfer the resultant files, or file if you publish as a single executable file. linkfedilink
minus-squareNiftyBeaks@lemm.eetoProgrammer Humor@lemmy.ml•I hate JavaScript so muchlinkfedilinkarrow-up14arrow-down2·2 years ago All of those things are by design And this makes sane programmers sad. linkfedilink
Is this something you want to run manually or automatically? If you want to run automatically either look into dotnet service workers, or run the console app with a crontab.
You can use https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-publish to create an executable. Then you would just transfer the resultant files, or file if you publish as a single executable file.