Reputation: 19
I am following instructions to set up a new Episerver 9
commerce site.
I've followed the instructions at: http://world.episerver.com/documentation/Items/Installation-Instructions/installing-episerver/#Commerce
When I install NuGet package EpiServer.CommerceManager
I get the following error:
An error occurred while applying transformation to 'web.config' in project 'WebCommerceApplication' No element in the source document matches '/configuration/system.serviceModel/services'
What do I do wrong?
Upvotes: 0
Views: 90
Reputation: 7391
It seems you have a transform for an element that's missing in web.config
.
Make sure you have an element like...
<configuration>
<system.serviceModel>
<services />
<system.serviceModel>
<configuration>
...in your web.config
.
Upvotes: 1