To upgrade to Code Coverage package version 1.2, you need to do the following:
- Update assembly filtering aliases in batchmode
- Rename pathStrippingPatterns
to pathReplacePatterns
in batchmode
Note: If you're upgrading from a version older than 1.1, follow the upgrade guide for version 1.1 first.
<user>
alias was renamed to <assets>
and <project>
was renamed to <all>
.pathStrippingPatterns
to pathReplacePatterns
in batchmodepathStrippingPatterns
to pathReplacePatterns
in batchmode.pathStrippingPatterns:C:/MyProject/
to pathReplacePatterns:C:/MyProject/,
.C:/MyProject/
by replacing C:/MyProject/
with an empty string.To upgrade to Code Coverage package version 1.1, you need to do the following:
- Update path filtering globbing rules
*
character should be replaced with **
. A single *
character can be used to specify a single folder layer.pathFilters:+C:/MyProject/Assets/Scripts/*
will include all files in the C:/MyProject/Assets/Scripts
folder. Files in subfolders will not be included.pathFilters:+C:/MyProject/Assets/Scripts/**
will include all files under the C:/MyProject/Assets/Scripts
folder and any of its subfolders.For a full list of changes and updates in this version, see the Code Coverage package changelog.