9 references to Baseline
Microsoft.TemplateEngine.Cli (1)
Commands\FilterOptionDefinition.cs (1)
29
matchInfoName: MatchInfo.BuiltIn.
Baseline
);
Microsoft.TemplateEngine.Utils (8)
TemplateMatchInfoExtensions.cs (4)
126
/// Returns true when <paramref name="templateMatchInfo"/> has <see cref="MatchKind.Exact" /> match on <see cref="MatchInfo.BuiltIn.
Baseline
"/>.
130
return templateMatchInfo.MatchDisposition.Any(x => x.Name == MatchInfo.BuiltIn.
Baseline
&& x.Kind == MatchKind.Exact);
134
/// Returns true when <paramref name="templateMatchInfo"/> has <see cref="MatchKind.Mismatch" /> on <see cref="MatchInfo.BuiltIn.
Baseline
"/>.
138
return templateMatchInfo.MatchDisposition.Any(x => x.Name == MatchInfo.BuiltIn.
Baseline
&& x.Kind == MatchKind.Mismatch);
WellKnownSearchFilters.cs (4)
162
/// - if <paramref name="baselineName"/> is equal to key from <see cref="ITemplateMetadata.BaselineInfo"/> (case insensitive), adds match disposition <see cref="MatchInfo.BuiltIn.
Baseline
"/> with <see cref="MatchKind.Exact"/>;<br/>
163
/// - adds match disposition <see cref="MatchInfo.BuiltIn.
Baseline
"/> with <see cref="MatchKind.Mismatch"/> otherwise.<br/>
177
return new MatchInfo(MatchInfo.BuiltIn.
Baseline
, baselineName, MatchKind.Exact);
181
return new MatchInfo(MatchInfo.BuiltIn.
Baseline
, baselineName, MatchKind.Mismatch);