Updates for vs2022

This commit is contained in:
Wojciech Figat
2022-12-20 18:23:20 +01:00
parent 580f4120dc
commit 2fee75517d
8 changed files with 13 additions and 10 deletions

View File

@@ -78,8 +78,8 @@ namespace FlaxEditor.Modules.SourceCodeEditing
switch (Type)
{
case CodeEditorTypes.VSCodeInsiders:
case CodeEditorTypes.VSCode: return "-vscode -vs2019";
case CodeEditorTypes.Rider: return "-vs2019";
case CodeEditorTypes.VSCode: return "-vscode -vs2022";
case CodeEditorTypes.Rider: return "-vs2022";
default: return null;
}
}