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 585b02e commit 3314c7fCopy full SHA for 3314c7f
src/ProjectTemplates/test/BaselineTest.cs
@@ -119,6 +119,9 @@ private string CreateProjectKey(string arguments)
119
// Add template name, value has form of "new name"
120
text += argumentsArray[0].Substring("new ".Length);
121
122
+ // Sort arguments to ensure definitions that differ only by arguments order are caught
123
+ Array.Sort(argumentsArray, StringComparer.Ordinal);
124
+
125
foreach (var argValue in argumentsArray)
126
{
127
var argSegments = argValue.Split(' ', StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries);
0 commit comments