Files
GSS2Rework/GSS2.Core/Extensions/ConfiurationSectionExtensions.cs
amkovkov 72ae26eee7 comprehensive update
1) remove unused components: camera view (due it causes segmentation faults), compute resources and all related, illuminator controller (due in useless without camera view), image storage service, temperature and humidity service
2) database schema - reduce tables references, features storing in records themselves in compressed form, add records creation and editing date and time, add separator comment column
3) analysis - rework of pipeline and ui, now database storing only raw data and all display values calculated from it
4) lights service - add reconnection if disconnected
5) add width and height command line arguments
6) fix some typos and other issues
2026-06-29 15:13:29 +03:00

16 lines
477 B
C#

using Microsoft.Extensions.Configuration;
namespace GSS2.Core.Extensions;
public static class ConfigurationSectionExtensions
{
public static Dictionary<string, string> AsDictionary(this IConfigurationSection values)
{
var dict = new Dictionary<string, string>();
foreach (var (key, value) in values.AsEnumerable())
if (value is not null)
dict.Add(key.Substring(values.Path.Length + 1), value);
return dict;
}
}