Fukurou series release 5
·
3394 commits
to master
since this release
6.2.714
- [BUGFIX] Finish wiring up
/p:AltCoverLocalSource
support - [BUGFIX] Fix failure when input/output directories were specified with a trailing separator character
- [HACK] mitigate Issue #71 by simply ignoring null module identifiers.
- [API]
-v|--visibleBranches
option (boolVisibleBranches
default false in API,-VisibleBranches
PowerShell flag) to simplify the reporting ofswitch
ormatch
cases where the compiler produces a tangle ofif
/else
branches that give surprising results in aReportGenerator
output (e.g.null
taking a different branch to adefault
case than a non-null
value as per Issue 72) - Use a leading
?
as a negator for filter matches e.g.?(a|b)
means "exclude anything that doesn't match a or match b", or?MyApp
means exclude anything that doesn't containMyApp
; no valid .net regex begins with this so it's backwards compatible. Between this and the previous release's--localSource
(now fully supported) option, the need to resort to cumbersome constructs involving negative lookahead regexes should be reduced.