VS2012 Publish Web Site dlls instead of cs-files

旧城冷巷雨未停 提交于 2019-12-06 01:43:34

问题


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?


回答1:


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.




回答2:


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.

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



来源:https://stackoverflow.com/questions/21723376/vs2012-publish-web-site-dlls-instead-of-cs-files

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!