Skip to content

Commit b6f0207

Browse files
committed
Docs changes
1 parent b2a24a5 commit b6f0207

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/input/docs/reference/configuration.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,9 @@ while still updating the `AssemblyFileVersion` and `AssemblyInformationVersion`
477477
attributes. Valid values: `MajorMinorPatchTag`, `MajorMinorPatch`, `MajorMinor`,
478478
`Major`, `None`.
479479

480+
For information on using format strings in these properties, see
481+
[Format Strings](/docs/reference/custom-formatting).
482+
480483
### assembly-file-versioning-scheme
481484

482485
When updating assembly info, `assembly-file-versioning-scheme` tells GitVersion
@@ -632,7 +635,7 @@ ignore:
632635
- ^docs\/
633636
```
634637
##### *Monorepo*
635-
This ignore config can be used to filter only those commits that belong to a specific project in a monorepo.
638+
This ignore config can be used to filter only those commits that belong to a specific project in a monorepo.
636639
As an example, consider a monorepo consisting of subdirectories for `ProjectA`, `ProjectB` and a shared `LibraryC`. For GitVersion to consider only commits that are part of `projectA` and shared library `LibraryC`, a regex that matches all paths except those starting with `ProjectA` or `LibraryC` can be used. Either one of the following configs would filter out `ProjectB`.
637640
* Specific match on `/ProjectB/*`:
638641
```yaml
@@ -655,7 +658,7 @@ A commit having changes only in `/ProjectB/*` path would be ignored. A commit ha
655658
* `/ProductA/*` and `/ProductB/*` and `/LibraryC/*`
656659

657660
:::
658-
Note: The `ignore.paths` configuration is case-sensitive. This can lead to unexpected behavior on case-insensitive file systems, such as Windows. To ensure consistent matching regardless of case, you can prefix your regular expressions with the case-insensitive flag `(?i)`. For example, `(?i)^docs\/` will match both `docs/` and `Docs/`.
661+
Note: The `ignore.paths` configuration is case-sensitive. This can lead to unexpected behavior on case-insensitive file systems, such as Windows. To ensure consistent matching regardless of case, you can prefix your regular expressions with the case-insensitive flag `(?i)`. For example, `(?i)^docs\/` will match both `docs/` and `Docs/`.
659662
:::
660663

661664
::: {.alert .alert-warning}

0 commit comments

Comments
 (0)