Question

I have a simple ASP.NET project that I want to publish. I right-click on the project and press "Publish Web Site", however this generates all my .cs files to the selected folder, previously I've been getting dll files in my bin folder instead of the .cs files.

What am I doing wrong?

Was it helpful?

Solution

The problem will be probably in the Publish setting. Please check if the option Precompile during publishing is selected. You can find the option here - Right click on the Project - Publish Web Site - section Settings - subsection File Publish Options - option Precompile during publishing.

OTHER TIPS

To publish your website in one DLL:

  1. In Visual Studio, open a web application project.
  2. Right click the project name in Solution Explorer, and then choose Publish.
  3. Select the Settings tab.
  4. Expand File Publish Options, and then select Precompile during publishing. Click Configure.

enter image description here

Refrence: https://msdn.microsoft.com/en-us/library/hh475319(v=vs.110).aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top