Rewrote to be based on Avalonia UI

This commit is contained in:
Tony Bark 2026-05-15 00:10:49 -04:00
parent fb013f2b15
commit cf5866ef3f
55 changed files with 417 additions and 790 deletions

View file

@ -14,7 +14,6 @@ indent_style = space
# C# files
[*.cs]
# Nullable reference types
csharp_nullable_reference_types = enable
# Naming conventions
dotnet_naming_rule.async_methods_end_in_async.severity = suggestion
@ -27,6 +26,23 @@ dotnet_naming_symbols.async_methods.required_modifiers = async
dotnet_naming_style.end_in_async.required_suffix = Async
dotnet_naming_style.end_in_async.capitalization = pascal_case
dotnet_naming_symbols.locals.applicable_kinds = local, parameter
dotnet_naming_symbols.const_fields.applicable_kinds = field
dotnet_naming_symbols.const_fields.required_modifiers = const
dotnet_naming_style.camel_case.capitalization = camel_case
dotnet_naming_style.all_caps.capitalization = all_upper
dotnet_naming_rule.locals_must_be_camel.severity = warning
dotnet_naming_rule.locals_must_be_camel.symbols = locals
dotnet_naming_rule.locals_must_be_camel.style = camel_case
dotnet_naming_rule.consts_must_be_all_caps.severity = warning
dotnet_naming_rule.consts_must_be_all_caps.symbols = const_fields
dotnet_naming_rule.consts_must_be_all_caps.style = all_caps
# Formatting
csharp_new_line_before_open_brace = all
csharp_indent_case_contents = true