This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using BenchmarkDotNet.Columns; | |
| using BenchmarkDotNet.Diagnosers; | |
| using BenchmarkDotNet.Engines; | |
| using BenchmarkDotNet.Exporters; | |
| using BenchmarkDotNet.Loggers; | |
| using BenchmarkDotNet.Validators; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param([switch] $Pack, [string] $Version, [switch] $Push, [string] $ApiKey, [switch] $Clean) | |
| if ($Pack) | |
| { | |
| $Title = "Package Versions" | |
| $Message = "In addition to specifying -Version you need to set the assembly version(s) " + | |
| "via the AssemblyVersionAttribute. Click 'Yes' to continue or 'No' to stop."; | |
| $Yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "I have set the version."; |