Skip to content

Commit

Permalink
Fixed web.config transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-dudarev committed Aug 4, 2017
1 parent 407ec62 commit ea3cf2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VirtoCommerce.Platform.Web/Web.Debug.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="VirtoCommerce:EnableBundlesOptimizations" value="false" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
<add key="VirtoCommerce:EnableBundlesOptimizations" value="false" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(key)" />
</appSettings>
<system.web>
<compilation debug="true" xdt:Transform="SetAttributes(debug)" />
Expand Down
2 changes: 1 addition & 1 deletion VirtoCommerce.Platform.Web/Web.Release.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="VirtoCommerce:EnableBundlesOptimizations" value="true" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
<add key="VirtoCommerce:EnableBundlesOptimizations" value="true" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(key)" />
</appSettings>
<system.web>
<compilation debug="false" xdt:Transform="SetAttributes(debug)" />
Expand Down
2 changes: 1 addition & 1 deletion VirtoCommerce.Platform.Web/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<add key="VirtoCommerce:SampleDataUrl" value="http://virtocommerce.blob.core.windows.net/sample-data" />
<add key="VirtoCommerce:Modules:GitHubAuthorizationToken" value="" />
<add key="VirtoCommerce:ModulesDataSources" value="https://raw.githubusercontent.com/VirtoCommerce/vc-modules/master/modules.json" />
<add key="VirtoCommerce:EnableBundlesOptimizations" value="false"/>
<add key="VirtoCommerce:EnableBundlesOptimizations" value="false" />
<add key="VirtoCommerce:AutoInstallModuleBundles" value="commerce" />
<add key="VirtoCommerce:Authentication:Cookies.Enabled" value="true" />
<add key="VirtoCommerce:Authentication:Cookies.ValidateInterval" value="1:00:00:00" />
Expand Down

0 comments on commit ea3cf2c

Please sign in to comment.