Seems like great news but I wonder if these releases help the .NET ecosystem in a meaningful anyway. Almost all .NET developers I know still use Windows even on cloud.
.NET definitely has first-class support on both Linux and Windows.
21–30 of 351 posts
Seems like great news but I wonder if these releases help the .NET ecosystem in a meaningful anyway. Almost all .NET developers I know still use Windows even on cloud.
.NET definitely has first-class support on both Linux and Windows.
The .NET ecosystem is giving me a lot of confidence these days. I've been on this rollercoaster since .NET Core 2.x and don't think I will be getting off any time soon. We recently upgraded from 3.1 to 6, which was a total non-event. The code base that was around for Core 2.x is still the same one we have today. Some substantial changes made to the web interfaces and hosting, but nothing in the business logic or data…
Cost... linux images should be a fraction of the cost of a Windows image. Unless, of course, you're using Azure, where they subsidize the cost of SQL Server by charging more for linux boxes/containers.
We haven’t run into a customer that wants us to host for them yet (and probably won’t ever in our market of banking).
Where do you host your .net projects? I am especially interested in anything other than azure webapp and VM's/IIS.
https://docs.servicestack.net/ormlite/litestream
If you don't want to use Docker, you can also easily deploy to Linux using rsync + supervisor:
Seems like great news but I wonder if these releases help the .NET ecosystem in a meaningful anyway. Almost all .NET developers I know still use Windows even on cloud.
Where do you host your .net projects? I am especially interested in anything other than azure webapp and VM's/IIS.
[Service]
Type=simple
ExecStart=/usr/bin/dotnet /some/path/myapp.dll
WorkingDirectory=/some/path/
Restart=always
User=someone
Group=someone
[Install]
WantedBy=multi-user.targetWhere do you host your .net projects? I am especially interested in anything other than azure webapp and VM's/IIS.
Where do you host your .net projects? I am especially interested in anything other than azure webapp and VM's/IIS.
The .NET ecosystem is giving me a lot of confidence these days. I've been on this rollercoaster since .NET Core 2.x and don't think I will be getting off any time soon. We recently upgraded from 3.1 to 6, which was a total non-event. The code base that was around for Core 2.x is still the same one we have today. Some substantial changes made to the web interfaces and hosting, but nothing in the business logic or data…
Cost... linux images should be a fraction of the cost of a Windows image. Unless, of course, you're using Azure, where they subsidize the cost of SQL Server by charging more for linux boxes/containers.
I'm a Java dev, but I have also developed on .Net and running modern .Net on Linux is about as simple as it get.