We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e8828 commit 36e5787Copy full SHA for 36e5787
src/GitVersionCore/TemplateManager.cs
@@ -59,11 +59,11 @@ public bool IsSupported(string fileExtension)
59
return addFormats.Keys.Contains(fileExtension, StringComparer.OrdinalIgnoreCase);
60
}
61
62
- static IEnumerable<string> GetEmbeddedTemplates(TemplateType templateType, string blah)
+ static IEnumerable<string> GetEmbeddedTemplates(TemplateType templateType, string templateCategory)
63
{
64
foreach (var name in typeof(TemplateManager).Assembly.GetManifestResourceNames())
65
66
- if (name.Contains(templateType.ToString()) && name.Contains(blah))
+ if (name.Contains(templateType.ToString()) && name.Contains(templateCategory))
67
68
yield return name;
69
0 commit comments