Friendship ended with VISUAL STUDIO, Now RIDER is my best friend

This commit is contained in:
Simon Lübeß
2024-03-09 20:33:26 +01:00
parent 09624e4e59
commit 4e9a6b54f3
7 changed files with 167 additions and 8 deletions
+14 -1
View File
@@ -26,12 +26,25 @@ namespace GlitchyEngine
namespace GlitchyEditor;
[Reflect]
enum ScriptIde
{
Rider,
VisualStudio
}
[Reflect]
class ScriptSettings
{
[Setting("Script", "Visual Studio path", "The path of the Visual Studio devenv.exe"), BonInclude]
[Setting("Tools", "Visual Studio path", "The path of Visual Studio's \"devenv.exe\""), BonInclude]
public String VisualStudioPath ~ delete _;
[Setting("Tools", "Rider path", "The path to JetBrains Rider IDE (rider64.exe)"), BonInclude]
public String RiderPath ~ delete _;
[Setting("Tools", "IDE", "The IDE that will be used to open scripts for editing."), BonInclude]
public ScriptIde SelectedIde;
public void Apply()
{
if (String.IsNullOrWhiteSpace(VisualStudioPath))