Created
August 6, 2019 15:34
-
-
Save greystate/c96f8e5e10448c3dc3914db32d5a1a3e to your computer and use it in GitHub Desktop.
Checking Umbraco Cloud environment
This file contains hidden or 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"?> | |
<SiteSettings environment="local"> | |
<Settings for="development"> | |
<!-- ... --> | |
</Settings> | |
<Settings for="live"> | |
<!-- ... --> | |
</Settings> | |
</SiteSettings> |
This file contains hidden or 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"?> | |
<SiteSettings environment="development" | |
xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform" | |
xdt:Transform="SetAttributes(environment)"> | |
<!-- Set the `environment` attribute to this one's value --> | |
</SiteSettings> |
This file contains hidden or 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"?> | |
<SiteSettings environment="live" | |
xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform" | |
xdt:Transform="SetAttributes(environment)"> | |
<!-- Set the `environment` attribute to this one's value --> | |
</SiteSettings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment