Set up staging environments for web apps in Azure App Service | Microsoft Docs
When using deployment slots in Azure Web Apps the appsettings and connectionsstrings are changed when swapping slots.
E.g. the production environment slot has the “production” version of appsettings and connectionstrings and the pre production slot has its own version of those settings in the web.config file.
This is default behaviour, unless you use the app settings in the Azure portal for the environments (overrides web.config file) or check the “Slot setting”. (setting will “stick” with the swap).
Read more here:
Slot config:
Set up staging environments for web apps in Azure App Service | Microsoft Docs
Configure web sites:
https://docs.microsoft.com/en-us/azure/app-service/web-sites-configure
joseftw/JOS.ContentSerializer: Converts any ContentData object to JSON
If you ever feel the need to serialize EPiServer ContentData into json (or format x) then check out this project.
Source: joseftw/JOS.ContentSerializer: Converts any ContentData object to JSON
Where do I find the Azure Website Deployment password
If you are using azure deployment profiles for Visual Studio you can find the deployment password here:
Login to portal, select the web app service, click the link “Get publish profile” to download. Open the xml file and find the password in element publishProfile attribute userPWD.
Source: Where do I get my actual Azure Website Deployment password? – Stack Overflow
Time Stamp Margin – Visual Studio Addon
Adds a timestamp to the Visual Studio 2017 output window.
Timestamp margin Adds the timestamp information to the Output Window in Debug mode: (minutes. Seconds. Milliseconds) Helps keep a track of running processes in the debug window.
Source: Time Stamp Margin – Visual Studio Marketplace
EPiServer – Comparing list properties
Probably in every EPiServer project there will be a need to store a list of links to your content pages. EPiServer.CMS.UI 8.6.0 introduced a new multiple ContentReference property. Usually we could use a single property to store a collection of links. For example when building a media slideshow or when displaying links in a site footer. Using EPiServer there are several possibilities of implementation.
List properties: ContentArea, LinkItemCollection, multiple ContentReference
Read more here: Comparing list properties – Grzegorz Wiecheć
Tools for finding broken links on a website
Xenu’s Link Sleuth: (Windows desktop tool)
http://home.snafu.de/tilman/xenulink.html#Download
More tools here:
http://www.wpuniversity.com/blog/5-tools-find-broken-links
Copying files larger than 2 GB over RDP
Symptoms
When you try to copy a file larger than 2 GB over a Remote Desktop Services or a Terminal Services session through Clipboard redirection (copy and paste) by using RDP client 6.0 or a later version, the file isn’t copied. And you don’t receive an error message.
Cause
It’s a known issue. Copying files larger than 2 GB by using this method isn’t supported.
Resolution
To resolve this issue, use one of the following methods:
- Use Drive Redirection through Remote Desktop Services or a Terminal Services session if you want to transfer files larger than 2 GB.
- Use command-line alternatives to copy files larger than 2 GB over a Remote Desktop Services or Terminal Services session. For example, use the following command:
Console:xcopy \\tsclient\c\myfiles\LargeFile d:\temp
Session problems when setting up Azure Web App Service
I had a problem with a web app service on Azure, the session state was not functioning properly.
2 instances where running for the website and the Session affinity cookie was set to Off, that was the problem, ARR makes sure that the user stays on the correct webserver for the duration of the session.
I had to turn it ON, see link below for where to find it.
Disable Session affinity cookie (ARR cookie) for Azure web apps
Turn off Client-side debugging in Visual Studio 2017 for js and typescript
If you prefer to use Chrome’s or IE’s own dev tools to do client-side debugging, the recent update to Visual Studio 2017 RC introduced a setting to disable the IE and Chrome script debugger (this will also prevent Chrome/IE from closing after a debugging session ends). Go to Tools -> Options -> Debugging -> General and turn off the setting Enable JavaScript Debugging for ASP.NET (Chrome and IE).
This needs to be done as well sometimes:
Tools > Options > Projects and Solutions > Web Projects, uncheck “Stop debugger when browser window is closed”
Source: Client-side debugging of ASP.NET projects in Google Chrome | .NET Web Development and Tools Blog