From e5b1a10d34d031b99136dcd15e9dacfa83da4b19 Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Sun, 26 Nov 2023 20:02:08 +0200 Subject: [PATCH] Fix VSCode intellisense not finding generated C# bindings definitions --- .../Flax.Build/Projects/VisualStudio/CSSDKProjectGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/CSSDKProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/CSSDKProjectGenerator.cs index 77b7abf46..fd47e3261 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/CSSDKProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/CSSDKProjectGenerator.cs @@ -73,8 +73,8 @@ namespace Flax.Build.Projects.VisualStudio csProjectFileContent.AppendLine(string.Format(" {0}", string.Join(";", allPlatforms))); // Provide default platform and configuration - csProjectFileContent.AppendLine(string.Format(" {0}", defaultConfiguration.Text)); - csProjectFileContent.AppendLine(string.Format(" {0}", defaultConfiguration.ArchitectureName)); + csProjectFileContent.AppendLine(string.Format(" {0}", defaultConfiguration.Text)); + csProjectFileContent.AppendLine(string.Format(" {0}", defaultConfiguration.ArchitectureName)); switch (project.OutputType ?? defaultTarget.OutputType) {