MSBuild error while compiling ASP.NET website

前端 未结 5 1587
一整个雨季
一整个雨季 2020-12-17 08:56

I get the following error when I try to compile an asp.net site using a custom build script.

error ASPCONFIG: It is an error to use a section registered as a         


        
相关标签:
5条回答
  • 2020-12-17 09:19

    In IIS, go to the folder that the app runs under, right click it, go to properties. On the Directory tab, look for "Application settings". Click the create button.

    0 讨论(0)
  • 2020-12-17 09:29

    The rogue web.config file in the obj folder is most likely to be caused when you do a Publish Web Site. So just clean it up after you've done the publish.

    0 讨论(0)
  • 2020-12-17 09:32

    if this happens after the virtual-directory is already created do the following:

    • right-click on web.config
      • properties
        • Build Action: Content
        • Copy to Output directory: Do not copy
    • if transformed (apply to all configurations)
      • properties
        • Build Action: None
        • Copy to Output directory: Do not copy
    0 讨论(0)
  • 2020-12-17 09:34

    I had this SAME EXACT problem and finally discovered a rogue Web.config was placed in my obj folder ... do yourself a favor and do a search in all the sub-directories for a web.config file. I deleted it and all was back to normal.

    0 讨论(0)
  • 2020-12-17 09:41

    It is likely that your web.config file is placed in a directory that is not the root of the application. On most versions of IIS, you can convert any folder on your web site to an application root:

    1. Open IIS and navigate to the appropriate folder
    2. Right-click on the folder, select properties
    3. Under Application Settings, and beside Application name, click Create
    4. Apply and close

    If this does not fix your problem, there may be another configuration error, either with IIS or your application.

    0 讨论(0)
提交回复
热议问题