-
As a C# developer, Beat Saber player and Linux user, I was hoping I could help with this project. My main issue right now is that this doesn't seem to compile with Visual Studio Code which, as far as I know, is the only C# IDE that currently runs on Linux and is available for free. Your choice of UI framework hints at Jetbrain's Rider IDE, is that correct? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Im not one hundred percent sure, but doesn't Jetbrains IntelliJ IDEA have C# plugins? |
Beta Was this translation helpful? Give feedback.
-
Woo! first proper question ;) Don't have time for a full answer but here's what I'm using: CI builds - That's github actions or circleci, dotnet container, just runs dotnet publish Not using Jetbrains or anything of that ilk due to price/licencing model. So what's your error? It definitely builds using the dotnet command line, nothing special needed (will pull avalonia from nuget, or whatever package manager dotnet uses) |
Beta Was this translation helpful? Give feedback.
Woo! first proper question ;)
Don't have time for a full answer but here's what I'm using:
CI builds - That's github actions or circleci, dotnet container, just runs dotnet publish
On Linux - VSCode, dotnet sdk (5.0+), hand-editing the avalonia files
On Windows - VS 2019 with .net 5 SDK, avalonia designer extensions
Not using Jetbrains or anything of that ilk due to price/licencing model.
Generally if I'm doing UI design I'll do it on windows, as there's a visual designer extension for it - In vscode the best I could find was a preview pane for avalonia, but no widget toolbox (I'm a C++/Qt guy, don't know what all the widgets are called yet in C# world).
So what's your error? It definitel…