Self Contained Deployment of .Net core Console Application on Ubuntu
Off late i am involved in migrating my organization applications from .net to .net core , so that our application can be deployed in cross platform scenarios and offcourse focus is on towards migration to cloud infrastructure. Just in case if you have not got chance to read about .net core, this is the best place to get a quick idea about same. Now area where i am going to focus in this article is how to use self contained deployment feature from .net core to run your dot net core application in Linux. Self contained deployment is a model where you do not need dot net core platfrom or runtime to be installed in target OS you can just copy your application in OS and start using it. Isnt that cool ☺ If you want to learn more about .net core deployment please refer this article. Some Prerequisites - 1. Create a dot net core application with visual studio or dotnet cli 2. obviously have an Ubuntu system ☺. Till now all good but problem, where i got stuck was -...