Hey, maybe I found out what´s wrong.
In this file VSCodeScriptEditor.cs whitch you can open by clicking on the link (The blue part) in you error with CTRL i guess (don´t remember already), there is a function called OnGUI. Nad there happens that mess. You have to paste this instead of your OnGUI func.
public void OnGUI()
{
Arguments = EditorGUILayout.TextField(“External Script Editor Args”, Arguments);
if (GUILayout.Button(k_ResetArguments, GUILayout.Width(120)))
{
Arguments = DefaultArgument;
}
var prevGenerate = EditorPrefs.GetBool(vscode_generate_all, false);
var generateAll = EditorGUILayout.Toggle(“Generate all .csproj files.”, prevGenerate);
if (generateAll != prevGenerate)
{
EditorPrefs.SetBool(vscode_generate_all, generateAll);
}
m_ProjectGeneration.GenerateAll(generateAll);
HandledExtensionsString = EditorGUILayout.TextField(new GUIContent("Extensions handled: "), HandledExtensionsString);
}
(There are some Settings functions that you have to delete)
Then it should continue JUST with public void CreateIfDoesntExist() and so on…
It is probably hard to understand so the part of that code should looks like this