this post was submitted on 25 Jun 2023
7 points (100.0% liked)
Programming
13374 readers
9 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Having never built an app in .net, my first instinct would be to try to containerise it.
This would make the installation of it (mostly) platform independent, and would let you easily prove it on your development machine.
https://learn.microsoft.com/en-us/dotnet/core/docker/build-container?tabs=windows
Note that docker isn't the only way. There is also podman, and I'm sure there are others.
All of these build ontop of the Open Container Initiative, and are mostly interchangeable. It's only once you dig deeper into docker/podman/whatever that you might start running into compatibility issues.
I don't think I've ran into any issues between using docker and podman, albeit for nodejs applications.