2 implementations of Type
dotnet (1)
Commands\New\MSBuildEvaluation\ProjectCapabilityConstraint.cs (1)
61public string Type => _factory.Type;
Microsoft.TemplateEngine.Edge (1)
Constraints\ConstraintBase.cs (1)
17public string Type => Factory.Type;
5 references to Type
Microsoft.TemplateEngine.Abstractions (2)
Constraints\TemplateConstraintResult.cs (2)
16_constraintType = constraint.Type; 39public string ConstraintType => Constraint?.Type ?? _constraintType;
Microsoft.TemplateEngine.Utils (3)
WellKnownSearchFilters.cs (3)
239var matchingConstraints = template.Constraints.Where(c => c.Type == constraintDefinition.Type); 250return new MatchInfo($"{MatchInfo.BuiltIn.Constraint}.{constraintDefinition.Type}", null, MatchKind.Mismatch); 253return new MatchInfo($"{MatchInfo.BuiltIn.Constraint}.{constraintDefinition.Type}", null, MatchKind.Exact);