PowerShell-DevOps
PowerShell-DevOps copied to clipboard
Publish Export-NUnitXml.psm1
trafficstars
Export-NUnitXml.psm1 is a recommended solution on your blog for integrating with AppVeyor, and it works quite well.
Any chance you could publish it on PSGallery for better managed installation of this module.
While not as convenient, I've been using this code in automation/CI stuff:
(New-Object System.Net.WebClient).DownloadFile( 'https://raw.githubusercontent.com/MathieuBuisson/PowerShell-DevOps/master/Export-NUnitXml/Export-NUnitXml.psm1', '.\Export-NUnitXml.psm1' )
Import-Module '.\Export-NUnitXml.psm1' -Force