* Simplify JSON schema and only generate appsettings-schema.Umbraco.Cms.json * Use Umbraco.JsonSchema.Extensions to dynamically add JSON schema references * Move DependentUpon items to shared MSBuild props * Update LangVersion to latest * Update Umbraco.GitVersioning.Extensions to 0.2.0 * Remove JSON schemas on clean * Remove Umbraco.JsonSchema.Core project * Fix JSON schema nullability * Ignore additional JSON schema files in template * Update CompatibilitySuppressions.xml * Remove GlobalSettings.UmbracoPath from JSON schema again * Remove RemoveUmbracoJsonSchemaFiles target * Update Umbraco.JsonSchema.Extensions to 0.2.0 and add weights * Flatten generated JSON schema hierarchy * Remove LicensesSettings from CMS codebase * Change AdditionalParameters to IDictionary
40 lines
963 B
JSON
40 lines
963 B
JSON
{
|
|
"$schema": "appsettings-schema.json",
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information",
|
|
"System": "Warning"
|
|
}
|
|
}
|
|
},
|
|
//#if (HasConnectionString)
|
|
"ConnectionStrings": {
|
|
"umbracoDbDSN": "CONNECTION_STRING_FROM_TEMPLATE",
|
|
"umbracoDbDSN_ProviderName": "CONNECTION_STRING_PROVIDER_NAME_FROM_TEMPLATE"
|
|
},
|
|
//#endif
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Global": {
|
|
"Id": "TELEMETRYID_FROM_TEMPLATE",
|
|
//#if (UseHttpsRedirect)
|
|
"UseHttps": true,
|
|
//#endif
|
|
//#if (HasNoNodesViewPath)
|
|
"NoNodesViewPath": "NO_NODES_VIEW_PATH_FROM_TEMPLATE",
|
|
//#endif
|
|
"SanitizeTinyMce": true
|
|
},
|
|
"Content": {
|
|
"AllowEditInvariantFromNonDefault": true,
|
|
"ContentVersionCleanupPolicy": {
|
|
"EnableCleanup": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|