Add integration with Rider IDE

This commit is contained in:
Wojtek Figat
2021-03-02 13:43:50 +01:00
parent d6b566a3fe
commit 835cb93261
6 changed files with 221 additions and 2 deletions

View File

@@ -57,6 +57,9 @@ namespace FlaxEditor.Modules.SourceCodeEditing
case CodeEditorTypes.VSCodeInsiders:
Name = "Visual Studio Code - Insiders";
break;
case CodeEditorTypes.Rider:
Name = "Rider";
break;
default: throw new ArgumentOutOfRangeException(nameof(type), type, null);
}
}
@@ -73,6 +76,7 @@ namespace FlaxEditor.Modules.SourceCodeEditing
{
case CodeEditorTypes.VSCodeInsiders:
case CodeEditorTypes.VSCode: return "-vscode";
case CodeEditorTypes.Rider: return "-vs2019";
default: return null;
}
}