As the title says, you probably guessed it already. For work I mainly develop on the .NET platform using a Windows device, but at home I enjoy all the benefits of a good OS.

Now I kinda want to get my C# skills “sharper” and have some projects in mind utilising it, but I’m a bit miffed about the development tools and possibilities of deployment available for me on Linux.

Also I may want to coerce my boss to let me work on a device with my OS of choice.

Any advice from devs that are in a similar spot? What do you use for .NET development on Linux? And are there any cool multiplatform deployment possibilities (next to Xamarin/Maui) that actually let me build natively on Linux?

  • @mark
    link
    295 months ago

    I do all my editing in neovim, with omnisharp as an lsp. It works pretty well. Happy to send you my dotfiles if you want.

    As far as deployment, dotnet just runs on Linux now, especially if you’re do8ng web, its all the same. I deploy through containers to kubernetes, and its super smooth

    • @loops@beehaw.org
      link
      fedilink
      English
      225 months ago

      As a non-programmer, this entire comment sounds straight out of a Neal Stephenson sci-fi story.

      • @mark
        link
        35 months ago

        I use the dotnet/sdk image to build and publish into the dotnet/aspnet for runtime since it’s smaller. Both from mcr.microsoft.com

          • @mark
            link
            25 months ago

            All linux! I think debian, though they have alpine images too.

            I wouldnt wish windows containers on my worst enemy haha.

            • @beeng@discuss.tchncs.de
              link
              fedilink
              3
              edit-2
              5 months ago

              Oh I didn’t think mcr.microsoft provided Linux base, ok good to know.

              I’ve reviewed a few PRs with that in the dockerfile and thought it was always windows based, good to know!

              • @mark
                link
                35 months ago

                I think there are windows containers available, but even M$ has given up pushing windows server for cloud native stuff. All their tutorial docs for containers use linux haha

    • @rfvizarra@lemmy.ml
      link
      fedilink
      35 months ago

      I would love to use neovim for my work C# development.

      I’ve tried omnisharp with vscode in the past, but I found I had to restart it frequently. Hopely it would be more stable now

      Can you please share your dotfiles?

      • @mark
        link
        3
        edit-2
        5 months ago

        Just sent them to you.

        Once in a blue moon i have to restart omnisharp, but its just a simple lsp restart

        Much less often these days then even a year ago

        I also use neovim through WSL on windows to do work

  • @bruce965@lemmy.ml
    link
    fedilink
    205 months ago

    I work professionally from Windows, and as a hobby from Linux. My tool of choice for coding in .NET is Visual Studio Code (not FOSS, but there is a FOSS version which is just a bit more limited). It’s not as complete as Visual Studio, but it’s much faster, it has all the basic tools including a debugger, and it’s much more customizable.

    Also if you have never done it before, you might love dotnet watch which works with any IDE and lets you make realtime changes to your code while the application is already running.

    As for UI, my personal choice is deploying a static website on localhost through Kestrel (it’s less than 100 lines of code for a fully configured one), and then let the user’s browser take care of showing the UI. You could use Blazor if you really want to use C# all the way, but my personal recommendation is to stick to web technologies such as TypeScript and React (using either Parcel or Vite to build your project). Making your UI web-friendly also makes your app cloud-ready, in case tomorrow you will decide that’s something you need.

    Finally, you can now deploy .NET apps as a single self-contained executable on all major platforms. But as already recommended by other users, I would keep adopting a web-first approach and go for Docker, and eventually Kubernetes. It’s a lot of work to understand it properly though, so perhaps you can start studying this topic another day in the future.

    Feel free to ask me anything if you have questions.

  • astrsk
    link
    fedilink
    8
    edit-2
    5 months ago

    Jetbrains Rider is fantastic and .net 6+ is native to Linux now. You can even get by with VSCode (I prefer VSCodium) with their improved C# tools.

    Depending on what you do, there’s also cross platform UI libraries like Avalonia-UI that can fully replace WPF.

  • @MattMckenzy@lemmy.ml
    link
    fedilink
    85 months ago

    I’m a professional and hobbyist C# .NET dev and I recently made the switch to a full Linux environment at home. I’ve gotten a great workflow setup with just VSCode and some extensions. I’ve actually found some ways to improve my workflow with VSCode vs Visual Studio and I’m glad I made the switch. The only thing I really miss is the phenomenal diagnostics and profiling I would get with a full Visual Studio install, but I’m getting used to using cli dotnet tools to replace that as well.

    If you’re going the VSCode route, feel free to ask me more questions on useful extensions or workflow tweaks!

    • Chris
      link
      fedilink
      English
      15 months ago

      What process do you use to sign your binaries?

      • @MattMckenzy@lemmy.ml
        link
        fedilink
        25 months ago

        I haven’t really distributed any binaries yet, everything I work on is just FOSS at https://github.com/MattMckenzy.

        However, I did look into packaging my HomeCast project in my own debian apt repository. It’s still unsigned at the moment, but when I get to it I imagine I’ll just use dpkg and gnupg2 however I need to.

  • @marlowe221@lemmy.world
    link
    fedilink
    English
    55 months ago

    I write C# for a living and I’m the same - Windows at work, Linux at home.

    I use VSCode on both OSes. On Linux, I only use VSCode for C# and I have the MS-free version for any other languages I want to use.

    I also use VSCode 95% on my work laptop which is a Windows machine. The extension Ms are really good and the dotnet CLI is pretty robust. There are also extensions that can help you deploy stuff to Azure too.

  • @Wojwo@lemmy.ml
    link
    fedilink
    45 months ago

    Another Rider user. I write mainly backed code, and integrations etc. Work is Rider and Datagrip on windows. Home is Debian KDE with Rider and Datagrip. I love it. If only I can convince my it group to allow Debian on my work computer.

  • Rikudou_Sage
    link
    fedilink
    25 months ago

    .NET is now native on Linux, since .NET Core. I use Rider as an IDE.