Skip to content

Commit

Permalink
chore: Updated the project with latest templates, sdk packages and ex…
Browse files Browse the repository at this point in the history
…tensions
  • Loading branch information
vatsashah45 committed Apr 17, 2024
1 parent 0dca106 commit b805a1b
Show file tree
Hide file tree
Showing 11 changed files with 231 additions and 66 deletions.
167 changes: 167 additions & 0 deletions reference/Commerce/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org

# This file is the top-most EditorConfig file
root = true

##########################################
# Common Settings
##########################################

[*]
indent_style = space
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8

##########################################
# File Extension Settings
##########################################

[*.{yml,yaml}]
indent_size = 2

[.vsconfig]
indent_size = 2
end_of_line = lf

[*.sln]
indent_style = tab
indent_size = 2

[*.{csproj,proj,projitems,shproj}]
indent_size = 2

[*.{json,slnf}]
indent_size = 2
end_of_line = lf

[*.{props,targets}]
indent_size = 2

[*.xaml]
indent_size = 2
charset = utf-8-bom

[*.xml]
indent_size = 2
end_of_line = lf

[*.plist]
indent_size = 2
indent_style = tab
end_of_line = lf

[*.manifest]
indent_size = 2

[*.appxmanifest]
indent_size = 2

[*.{json,css,webmanifest}]
indent_size = 2
end_of_line = lf

[web.config]
indent_size = 2
end_of_line = lf

[*.sh]
indent_size = 2
end_of_line = lf

[*.cs]
# EOL should be normalized by Git. See https://github.com/dotnet/format/issues/1099
end_of_line = unset

# See https://github.com/dotnet/roslyn/issues/20356#issuecomment-310143926
trim_trailing_whitespace = false

tab_width = 4
indent_size = 4

# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true

# Avoid "this." and "Me." if not necessary
dotnet_style_qualification_for_field = false:suggestion
dotnet_style_qualification_for_property = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_event = false:suggestion

#### Naming styles ####

# Naming rules

dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

# Symbol specifications

dotnet_naming_symbols.interface.applicable_kinds = interface
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interface.required_modifiers =

dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types.required_modifiers =

dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =

# Naming styles

dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_style_operator_placement_when_wrapping = beginning_of_line
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
dotnet_style_prefer_conditional_expression_over_return = true:silent
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_prefer_inferred_tuple_names = true:suggestion

csharp_indent_labels = one_less_than_current
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_prefer_braces = true:silent
csharp_style_namespace_declarations = file_scoped:warning
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_properties = true:silent
csharp_style_expression_bodied_indexers = true:silent
csharp_style_expression_bodied_accessors = true:silent
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
1 change: 0 additions & 1 deletion reference/Commerce/.vsconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"Microsoft.VisualStudio.Component.Merq",
"Component.Xamarin.RemotedSimulator",
"Microsoft.VisualStudio.Component.MonoDebugger",
"Component.Xamarin",
"Microsoft.VisualStudio.ComponentGroup.Maui.All",
"Component.Android.SDK34",
"Component.Android.SDK33",
Expand Down
88 changes: 44 additions & 44 deletions reference/Commerce/Commerce.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
VisualStudioVersion = 17.2.32210.308
MinimumVisualStudioVersion = 15.0.26124.0

Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commerce", "Commerce\Commerce.csproj", "{135A0C24-5F94-416F-9D37-1265BAA347E0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commerce", "Commerce\Commerce.csproj", "{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}"
EndProject

Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{BADA71DC-7FFD-4EDC-9F28-FB74AEADC713}"
Expand Down Expand Up @@ -33,55 +33,55 @@ Global
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM64.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|ARM64.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhone.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhone.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x64.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x64.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x64.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x86.ActiveCfg = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x86.Build.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Debug|x86.Deploy.0 = Debug|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|Any CPU.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|Any CPU.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM64.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM64.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|ARM64.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhone.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhone.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhone.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x64.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x64.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x64.Deploy.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x86.ActiveCfg = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x86.Build.0 = Release|Any CPU
{135A0C24-5F94-416F-9D37-1265BAA347E0}.Release|x86.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM64.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|ARM64.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhone.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhone.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x64.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x64.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x64.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x86.ActiveCfg = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x86.Build.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Debug|x86.Deploy.0 = Debug|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|Any CPU.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|Any CPU.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM64.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM64.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|ARM64.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhone.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhone.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhone.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x64.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x64.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x64.Deploy.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x86.ActiveCfg = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x86.Build.0 = Release|Any CPU
{069B5EDD-CAE0-4B2A-B6F9-20A3AB7A385C}.Release|x86.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7577698D-851C-4767-B112-735AED013175}
SolutionGuid = {B0F1150E-B3C6-4827-8FCA-070D5111F58E}
EndGlobalSection
EndGlobal
15 changes: 7 additions & 8 deletions reference/Commerce/Commerce/App.xaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
<Application x:Class="Commerce.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wasm="http://platform.uno/wasm"
xmlns:utum="using:Uno.Toolkit.UI.Material"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="wasm">
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wasm="http://platform.uno/wasm"
xmlns:utum="using:Uno.Toolkit.UI.Material"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="wasm">

<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- Load WinUI resources -->
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<utum:MaterialToolkitTheme
ColorOverrideSource="ms-appx:///Styles/ColorPaletteOverride.xaml">
<utum:MaterialToolkitTheme ColorOverrideSource="ms-appx:///Styles/ColorPaletteOverride.xaml">
<!-- NOTE: You can override the default Roboto font by providing your font assets here. -->
<!-- <utum:MaterialToolkitTheme.FontOverrideDictionary>
<ResourceDictionary>
Expand Down
7 changes: 3 additions & 4 deletions reference/Commerce/Commerce/Commerce.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,19 @@
</UnoFeatures>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.development.json" />
<None Remove="appsettings.json" />
<None Remove="products.json" />
<None Remove="reviews.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="appsettings.development.json" />
<EmbeddedResource Include="appsettings.json" />
<EmbeddedResource Include="products.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="reviews.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows10.0.19041'">
<PackageReference Include="SkiaSharp.Views.WinUI" />
</ItemGroup>

</Project>
3 changes: 0 additions & 3 deletions reference/Commerce/Commerce/Models/Entity.cs

This file was deleted.

1 change: 1 addition & 0 deletions reference/Commerce/Commerce/Properties/launchsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
// Note: In order to select this profile, you'll need to comment the `Packaged` profile below until this is fixed: https://aka.platform.uno/wasdk-maui-debug-profile-issue
"Commerce (WinAppSDK Unpackaged)": {
"commandName": "Project",
"compatibleTargetFramework": "windows"
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions reference/Commerce/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
</PropertyGroup>

<PropertyGroup>
<UnoExtensionsVersion>4.1.1</UnoExtensionsVersion>
<UnoToolkitVersion>6.0.2</UnoToolkitVersion>
<UnoThemesVersion>5.0.1</UnoThemesVersion>
<UnoCSharpMarkupVersion>5.2.0</UnoCSharpMarkupVersion>
<UnoExtensionsVersion>4.1.6</UnoExtensionsVersion>
<UnoToolkitVersion>6.0.11</UnoToolkitVersion>
<UnoThemesVersion>5.0.8</UnoThemesVersion>
<UnoCSharpMarkupVersion>5.2.5</UnoCSharpMarkupVersion>
</PropertyGroup>
</Project>
5 changes: 4 additions & 1 deletion reference/Commerce/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
-->
<ItemGroup>
</ItemGroup>
</Project>
<ItemGroup>
<PackageVersion Include="SkiaSharp.Views.WinUI" Version="2.88.8" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion reference/Commerce/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// To update the version of Uno please update the version of the Uno.Sdk here. See https://aka.platform.uno/upgrade-uno-packages for more information.
"msbuild-sdks": {
"Uno.Sdk": "5.2.7"
"Uno.Sdk": "5.2.55"
}
}

0 comments on commit b805a1b

Please sign in to comment.