Fukurou series release 11
·
3219 commits
to master
since this release
6.6.747
- [API, Fake Helper API] Deprecate the
DotNet.TestOptions.WithImportModule
and.WithGetVersion
extension methods in favour of the otherwise identicalDotNet.TestOptions.WithAltCoverImportModule
and.WithAltCoverGetVersion
; the obsolete name now just calls through to the preferred one. - [API]
--showstatic[:[-|+|++]]
(stringShowStatic
default "-" in API,-ShowStatic string
PowerShell) to reveal the code usually auto-filtered (e.g. auto-properties, somwe system generated types, structure comparison methods in F#...); either with coverage value-3
(option '+') which is highlighted in the Visualizer but treated as 0 by ReportGenerator, or the value '0' (option '++') - [API]
--showGenerated
(boolShowGenerated
default false in API,-ShowSGenerated
PowerShell) to reveal the code marked by [CompilerGenerated] or [GeneratedCode] with coverage value-2
which is highlighted in the Visualizer but treated as 0 by ReportGenerator - [Visualizer, BUGFIX] fix the sorting of method by name for NCover format
- [Visualizer] group property
get_
andset_
, and eventadd_
andremove_
, methods together, under an appropriate icon - [Visualizer] For F# modules containing only types, group the contents together under a module entry at class level, just as they would have been were the module to directly contain any functions
- [Visualizer] Types that only contain an
Invoke
method and constructors are shown with an approriate icon, too. - [3rd Party] With the latest GTK#3 update, the GTK+ native libraries for win-x64 are no longer bundled into the nuget -- this seems to have been a transient behaviour in GtkSharp v3.22.25.49 only