Skip to content

Commit 766b3f2

Browse files
committed
Support .slnx files
1 parent 33ce716 commit 766b3f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/YarnSpinner.Console/Commands/GenerateDefinitionsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private static void GenerateYSLSFilesForCSharp(DirectoryInfo inputDirectory, Dir
5656
System.Environment.Exit(1);
5757
}
5858

59-
var solutions = inputDirectory.GetFiles("*.sln");
59+
var solutions = inputDirectory.GetFiles("*.sln").Concat(inputDirectory.GetFiles("*.slnx")).ToArray();
6060

6161
if (solutions.Length > 1)
6262
{

0 commit comments

Comments
 (0)