Recently, I've been developing .NET Core applications (simple console apps) that my team uses for other parts of our solution.
Currently, I maintain a wiki where I share the latest version of the app, which is then integrated into our pipeline. However, a significant issue with this approach is the lack of versioning. Whenever I create a new version, I must manually update the wiki by copying the link.
I've considered utilizing Azure Artifacts with an internal NuGet feed. However, I understand that Azure Artifacts primarily supports publishing DLLs for referencing, rather than executable files for direct download.
Do you have any suggestions for establishing a centralized location where I can publish versioned executables for my team to download and use?
Thanks.

Universal Packages is our recommended general solution for distributing tools and such. It's not specialized to any particular type of content. Since you're using .NET Core/.NET 5+, also check out .NET Tools.