error: This operation would create an incorrectly structured document

后端 未结 6 1984
北海茫月
北海茫月 2020-12-09 21:40

I keep trying to install the entity framework 6 and it always rolls back with the error of

error: This operation would create an incorrectly structured docum         


        
6条回答
  •  执念已碎
    2020-12-09 22:05

    In a web app, web.config had a reference to external app.config:

    This requires the App.config to be in a particular format, that EntityFrameworks installer considers invalid

    So, like others, the key was to:

    • rename/delete the App.config

    • Install EF

    • bring back the App.config

提交回复
热议问题