* fix sql syntax issues * unify all dtos, fix autoIncrement for NPoco.Insert and .BulkInsert * fix Copilot review comments * fix sql syntax in TrackedReferencesRepository.GetPagedDescendantsInReferences() * remove changes in TemplateServiceTests * Tweaks and fixes from first review. * Reverted changes outside scope of PR. * Use FirstOrDefault over SelectTop. * Fix delete member issue. * Fixed issue with create of webhooks. * Reverted changes to default data install. * Removed unused method. * Rationalised use of quoting helpers. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix nullability issue. --------- Co-authored-by: Andy Butland <abutland73@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
44 lines
891 B
JSON
44 lines
891 B
JSON
{
|
|
"$schema": "./appsettings-schema.json",
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Examine.Lucene.Providers.LuceneIndex": "Debug",
|
|
"Examine.BaseIndexProvider": "Debug",
|
|
"Examine.Lucene.LoggingReplicationClient": "Debug",
|
|
"Examine.Lucene.ExamineReplicator": "Debug"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Async",
|
|
"Args": {
|
|
"configure": [
|
|
{
|
|
"Name": "Console"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"Umbraco": {
|
|
"CMS": {
|
|
"Examine": {
|
|
"LuceneDirectoryFactory": "TempFileSystemDirectoryFactory"
|
|
},
|
|
"Global": {
|
|
"Smtp": {
|
|
//"From": "your@email.here",
|
|
//"Host": "localhost",
|
|
//"Port": 25
|
|
}
|
|
},
|
|
"Hosting": {
|
|
"Debug": true
|
|
}
|
|
}
|
|
}
|
|
}
|