PowerShell-DevOps icon indicating copy to clipboard operation
PowerShell-DevOps copied to clipboard

Publish Export-NUnitXml.psm1

Open jayvdb opened this issue 6 years ago • 1 comments
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.

jayvdb avatar Jun 19 '19 12:06 jayvdb

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

jasonrush avatar Nov 20 '19 08:11 jasonrush