5 ms·
VS Code is really good at certain things but it struggles on larger projects & doesn't have near the advanced features. It's a very good choice though for a lo
by mattferderer 2y ago
VS Code is really good at certain things but it struggles on larger projects & doesn't have near the advanced features.
It's a very good choice though for a lot of projects. It's also a great way to try out C#. It has some amazing extensions for certain tasks too.
- CharlieDigital 2y agoVSC feels pretty capable in my books. We have a mono-repo with 100k lines of C# in 8 projects, 40k lines of Vue SFCs in 2 workspaces, 39k lines of TypeScript, 23k lines of Astro. No issues at all running it on a 2021 14" MacBook Pro with only 16GB RAM and 512GB SSD while also running multiple Docker containers for Postgres, Neo4j, Memcached, and LocalStack. My take is that folks should not underestimate VSC; there are certainly things that Rider does better, but VSC is totally viable for modern .NET backend work.
- withinboredom 2y ago100k loc is not big. That’s a small-medium sized project.
- elAhmo 2y ago100k lines of code is definitely big and by no means a small project.
- no_wizard 2y agoI’d say medium, edging toward small, especially for the .NET community
- LandR 2y agoFor enterprise .NET that's definitely small. I've commonly seen enterprise .NET projects that are in the millions of LOC. And one that was over 10 million.
- sigseg1v 2y agoJust my experience, but at multiple companies, which are in the 50-70 employees range, their C# codebases were over 1 million LOC and I didn't get the feeling that they were exceptionally large or doing anything significantly different. I would put 1 million LOC as "medium enterprise . NET" which would place 100k in the small or possibly medium sized if there was significantly more LOC in another language that is part of the project that you aren't counting (eg. different web front-end).
- CharlieDigital 2y agoIt's not an all C# project; C# only comprises the backend. All in, the mono-repo is somewhere over 250k SLOC with mixed languages (Vue SFC, TS, Astro, JSX, shell). So when VSC is loaded, it's not only handling C#, but also everything else. Point is that VSC is more than capable of handling production scale, multi-language workspaces even on 2021 hardware with only 16GB of RAM.
- nightski 2y agoIt's not that VS Code can't load a large project, that is table stakes. It's that the tools it provides to work with those large code bases are like fisher price versions of the Jetbrains equivalents. If one take their tools seriously, and uses them to the maximum extent possible to increase productivity, reliability, and robustness of code then there is just no comparison between the two. Don't get me wrong, I still use VS code for all front-end development and other ecosystems (such as Rust). But when it specifically comes to C#/.NET there is no substitute to Rider in my opinion.
- symlinkk 2y agoWhat tools are missing? It has debugging, a test runner, Intellisense.
- mattferderer 2y agoTo be fair they're not a great comparison. VS Code starts out as a lightweight code editor & via extensions you can turn it into more of an IDE but it'll take a lot of customization & messing around. Rider is an IDE with all the bells & whistles already included. It also has extensions but they've built it with the most popular things already. Refactoring, debugging, code navigation, formatting & hinting/suggestions are far superior in Rider. They have a lot more advanced features. Check out some YouTube videos by JetBrains to see examples. Don't get me wrong - VS Code is still a great tool & I use it daily. I do wish they would have named it something other than "Code" or "Visual Studio Code" but hey, it's Microsoft. They're famous for terrible bad name choices. Maybe they'll make a copilot to fix that.
- yungporko 2y agomy experience last time i tried it on a decent sized blazor project (about a year ago) was countless false errors and broken syntax highlighting to the point that i had to ignore everything and treat it like a dumb text editor like notepad if i wanted to actually get anything done instead of chasing shadows
- ohnoesjmr 2y agoI work on a almost 20 year old C# monolith, with 1000+ projects per solution. It doesn't even load in VS or VSC. Rider needs 16GB of ram, but manages to open it. I try to never close the IDE, as it takes 30mins to open.