Visual Studio IDE by JetBrains, called RIDER

Have some feedback and input to share?
Don't be shy and drop us a note. We want to hear from you and strive to make our site better and more user friendly for our guests and members a like.
Post Reply
User avatar
cecilchamp
Posts: 49
Joined: Wed Jun 12, 2019 1:44 pm

Visual Studio IDE by JetBrains, called RIDER

Post by cecilchamp »

I am not sure where I heard about this product, probably on one of the XSharp forums.:It's called JetBrains Rider.

https://www.jetbrains.com/rider/

Is anyone using this IDE? I would like to know what anyone here thinks about it.

Cecil
User avatar
lumberjack
Posts: 723
Joined: Fri Sep 25, 2015 3:11 pm

Visual Studio IDE by JetBrains, called RIDER

Post by lumberjack »

Hi Cecil,
cecilchamp wrote:I am not sure where I heard about this product, probably on one of the XSharp forums.:It's called JetBrains Rider.
https://www.jetbrains.com/rider/
Is anyone using this IDE? I would like to know what anyone here thinks about it.
Heard about it, but so far my preferred IDE is XIDE... Have not needed anything more...
User avatar
cecilchamp
Posts: 49
Joined: Wed Jun 12, 2019 1:44 pm

Visual Studio IDE by JetBrains, called RIDER

Post by cecilchamp »

Hi Johan,
I haven't gotten into XIDE because I really am not sure where to start. I'll look into it after work today.
Thanks,
Cecil
User avatar
lumberjack
Posts: 723
Joined: Fri Sep 25, 2015 3:11 pm

Visual Studio IDE by JetBrains, called RIDER

Post by lumberjack »

Hi Cecil,
cecilchamp wrote:Hi Johan,
I haven't gotten into XIDE because I really am not sure where to start. I'll look into it after work today.
Well if installed, normally in C:XIDE. Just fire it, create a "Project", Right click on the project, add appropriate application from the Templates and off you go...
XIDE.JPG
XIDE.JPG (129.38 KiB) Viewed 440 times
User avatar
cecilchamp
Posts: 49
Joined: Wed Jun 12, 2019 1:44 pm

Visual Studio IDE by JetBrains, called RIDER

Post by cecilchamp »

That seems simple enough. I can't wait to get home to give it a try.
Thanks,
Cecil
User avatar
wriedmann
Posts: 3644
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Visual Studio IDE by JetBrains, called RIDER

Post by wriedmann »

Hi Cecil,
XIDE is my development choice, I use Visual Studio only when absolutely needed.
XIDE is fast and code centric, and works also on small monitors, and is also usable on my tablet PC.
And apart form the fact that is written in X#, the author, Chris Pyrgas, is really helpful and has implemented a lot of our suggestions.
The only problem I have with it: it does not supports XAML - not because Chris has not tried to implement it, but because some functionalities needed by XAML are implemented in Visual Studio and not in the compiler.
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

Visual Studio IDE by JetBrains, called RIDER

Post by robert »

Cecil,

One of the problems that you may have with XIDE is that the terminology is different from FoxPro.
What FoxPro calls a Project is called an Application in XIDE.
A project in XIDE is a collection of Applications.

Apart from that and what Wolfgang said about WPF you should be fine with XIDE.

Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
User avatar
cecilchamp
Posts: 49
Joined: Wed Jun 12, 2019 1:44 pm

Visual Studio IDE by JetBrains, called RIDER

Post by cecilchamp »

Okay. Sounds great.
Thanks,
Cecil
User avatar
Chris
Posts: 4562
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

Visual Studio IDE by JetBrains, called RIDER

Post by Chris »

Hi Wolfgang,
wriedmann wrote: The only problem I have with it: it does not supports XAML - not because Chris has not tried to implement it, but because some functionalities needed by XAML are implemented in Visual Studio and not in the compiler.
To be precise about it, what XIDE does not have is a XAML _visual_ editor, and that's because when I tried to implement it I simply got just too frustrated with how its internals are designed (as an IDE writer I would have to work with its internals, nothing wrong (ok, not much wrong :)) with WPF as a system when being used normally from regular apps). But if you simply want to embed an already existing XAML resource to your app, that should be pretty easy actually.

Btw, another limitation of XIDE is that you cannot debug applications compiled in 64bit mode, but only in 32bit mode. It's a limitation of the (external) debugging library I am using unfortunately.
Chris Pyrgas

XSharp Development Team test
chris(at)xsharp.eu
User avatar
wriedmann
Posts: 3644
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Visual Studio IDE by JetBrains, called RIDER

Post by wriedmann »

Hi Chris,
there are two sorts of XAML: compiled XAML and loose XAML.
Loose XAML can be embedded also by XIDE (and that is what I already do for some functionalities of my XIDE written WPF applications), but for WPF forms loose XAML has some limitations.
Normal XAML is compiled to BAML by Visual Studio, and the relative compiler also generates a code file (xx.g.cs for C#, xx.g.prg for X#), and adds this file to the project.
Unfortunately the only way to generate that is to use MSBuild, and it has to be an intermediate step in the compile process because the XAML could reference classes in the application itself.
For me this is not really a problem because I build my windows in code, using my own classes that offer some functionalities, like databinding of the DataGridView columns (the columns are defined in the ViewModel, and not in the View), and also the possibility to immediatly implement different languages into the forms.
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Post Reply