PowerShellBuild icon indicating copy to clipboard operation
PowerShellBuild copied to clipboard

Common build tasks for psake and Invoke-Build that build and test PowerShell modules

Results 22 PowerShellBuild issues
Sort by recently updated
recently updated
newest added

I have the task `BumpVersion` that I want the `Build` task to depend on. That said, I found `$PSBPreference.Build.Dependencies` and have supplied the following array `@('StageFiles', 'BuildHelp', 'BumpVersion')`. However, `BumpVersion`...

My Build was not completing anymore since I activated the Code Coverage, until I removed "[Math]::Truncate" for the $perc VAR. I am still able to set and change the threshold...

Files for the same Version from GIT and PowerShellGallery are different. Same for Stucco, this can get really confusing. [Changes $configuration.Run.PassThru to $True (](https://github.com/psake/PowerShellBuild/commit/9129ea6f430d6e83ea1c02651b521b8ae67e191d)https://github.com/psake/PowerShellBuild/pull/52[)](https://github.com/psake/PowerShellBuild/commit/9129ea6f430d6e83ea1c02651b521b8ae67e191d) for example.

## Description The `Initialize-PSBuild` function was not compatible with .NET Framework / PowerShell 5.1 due to the use of the `System.IO.Path.IsPathFullyQualified()` method, introduced with the fix for #27. I changed...

## Description ## Related Issue See [Related Issue](https://github.com/psake/PowerShellBuild/issues/61) ## Motivation and Context ## How Has This Been Tested? All existing pester tests pass on the fix branch - I have...

Executing the Test task fails when processing the Code Coverage results with error: ```powershell System.Management.Automation.RuntimeException: CodeCoverage.CoverageFormat must be 'JaCoCo' or 'CoverageGutters', but it was , please review your configuration. ```...

I noticed that if a new version is build, the **Cleanup** task will not delete old build versions in **'Output\modulename\'** This forces me to add an additional cleanup task or...

I chose to override some properties in **pssake.ps1**: ``` properties { # Set this to $true to create a module with a monolithic PSM1 $PSBPreference.Build.CompileModule = $false $PSBPreference.Help.DefaultLocale = 'en-US'...

## Expected Behavior Build fails, if any Pester tests fails ## Current Behavior ``` [-] Changelog and manifest versions are the same 391ms (298ms|92ms) Expected 1.0.0.2, but got 1.0.0.0. at...

bug

Thanks for collecting so many PowerShell module build features in one place - I really appreciate this module and the well-thought collection of tasks/variables! I spent a few minutes looking...