1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

[3.2] C#: Fix Godot failing to find class namespace

Also avoid searching C# files recursively twice.
This commit is contained in:
Ignacio Etcheverry
2020-09-04 01:31:17 +02:00
parent 939ed5dd5b
commit b3762622be
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ namespace GodotTools.ProjectEditor
if (root.AreDefaultCompileItemsEnabled())
{
var excluded = new List<string>();
result = GetAllFilesRecursive(Path.GetDirectoryName(projectPath), "*.cs").ToList();
result.AddRange(existingFiles);
foreach (var item in root.Items)
{