MaxMelcher / AzureDevOps.WikiPDFExport

Export Azure DevOps Wiki to PDF
MIT License
186 stars 62 forks source link

dotnet tool? #115

Open Tobias-08 opened 1 year ago

Tobias-08 commented 1 year ago

Hi, downloading the exe via web request seems a little bit cumbersome. What do you think about publishing this as a dotnet tool on nuget.org?

Thanks!

MaxMelcher commented 1 year ago

Are you talking about the integration into Azure DevOps as build task?

Tobias-08 commented 1 year ago

Not only, but that's one aspect. I know that there is an extension with its own task. But using just a script-task is fine for me (and I think this is also the direction Microsoft is heading for in Azure Devops). Having your tool as dotnet tool in nuget feels a bit more standards compliant to me (compare e. g. NBGV) and would ease integration and perhaps increase usage.

MaxMelcher commented 1 year ago

thats just a tiny addition to the github action that I use for the releases, will look at this when I have time.

MaxMelcher commented 1 year ago

https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools-how-to-create
https://github.com/marketplace/actions/publish-nuget

Tobias-08 commented 1 year ago

Thanks, I appreciate!