Releases: noncommunicado/KutCode.KeyInject
Releases · noncommunicado/KutCode.KeyInject
Release list
v2.0.0
Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/ru/1.1.0 /).
[2.0.0]
Added
- ReplaceNullValue — configuration option (
KeyInjectConfiguration.ReplaceNullValue, default istrue') and the builder's method isSetReplaceNullValue(bool)`.- When ** is
true** (default behavior): if there is no value in the configuration for the placeholder or it is empty, substitution is performed with an empty string (for example,name=${MISSING}→name=). - When
false: such placeholders are not replaced, and the original template remains in the string (for example,${MISSING}).
- When ** is