A few days back, I got a requirement to create a .NET Core Console application and give it to my test team as an exe application for their testing. Well, I created a .NET Core console application and wrote all the business requirements. But when I opened the app and the debug/release folder, I did not find the exe available there, as we were in the .NET Framework application. Then, I found out a solution for it which will help us create an exe from a .NET Core Console application. Let’s see it with example. Step 1 Create a .NET Core Console application and click on the OK button. Here, I have created an application and when I build this solution, my expectation is to get the exe file available in the debug/release folder. Step 2 You can see that we do not have any exe files there in this folder. But I would like to inform you that this is not a bug. In .NET Core, it runs from the dll, so you have to just run the application by runnin...