Reputation: 5424
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?
Upvotes: 6
Views: 6505
Reputation: 681
To publish your website in one DLL:
Refrence: https://msdn.microsoft.com/en-us/library/hh475319(v=vs.110).aspx
Upvotes: 2
Reputation: 1295
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.
Upvotes: 6