I created an ASP.NET 5 Web Application. While using Class Library Projects, I got some errors. So, I added class files and wrote my business logic and data access logic. After Publishing using Visual Studio, the Output folder contains the actual source code and compiled DLLs are not present. How can I share the compiled files with my client for deployment and not the actual source code?
By selecting the Produce outputs on build in the Build option, a DLL is generated. How can I use this DLL with DNX command for hosting?
In one of the sites, it was mentioned that we can Pre-compile the Web Application. How can this be done?