This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change source to match path of folder from support package with .link files that won't build in config builder | |
# Source folder should have a web.config or web.config.link, and the app_config folder below it. | |
$source = "C:\SupportPackage\INSTANCE-Sitecore-prd-cd\Configs" | |
Write-Host "Fix Sitecore Support Package Links" | |
Write-Host "Source Directory defined in .ps1: " -NoNewline | |
Write-Host $source -ForegroundColor Yellow | |
Write-Host "Confirm path and press any key to begin. Press Ctrl-C to exit" | |
$null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:role="http://www.sitecore.net/xmlconfig/role/" xmlns:set="http://www.sitecore.net/xmlconfig/set/"> | |
<sitecore role:require="Standalone or ContentDelivery or ContentManagement"> | |
<sc.variable name="identityServerAuthority" value="https://dco-xpslim-si.azurewebsites.net" /> | |
<settings> | |
<!-- The URI of the IdentityServer provider. --> | |
<setting name="FederatedAuthentication.IdentityServer.Authority" value="$(identityServerAuthority)" /> | |
<!-- The client identifier on the IdentityServer. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Content Editor styles */ | |
.scContentControl { | |
direction: rtl; | |
} | |
div#ContentWrapper { | |
direction: rtl; | |
} | |
.scContentControlMemo { | |
direction: rtl; | |
} |