Skip to content

Commit 2021447

Browse files
committed
chore: moved singleproject Counter to new branch
1 parent 275f289 commit 2021447

File tree

275 files changed

+1517
-4602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

275 files changed

+1517
-4602
lines changed

reference/Counter/CSharp-MVUX/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ csharp_indent_labels = one_less_than_current
153153
csharp_using_directive_placement = outside_namespace:silent
154154
csharp_prefer_simple_using_statement = true:suggestion
155155
csharp_prefer_braces = true:silent
156-
csharp_style_namespace_declarations = block_scoped:silent
156+
csharp_style_namespace_declarations = file_scoped:warning
157157
csharp_style_prefer_method_group_conversion = true:silent
158158
csharp_style_prefer_top_level_statements = true:silent
159159
csharp_style_prefer_primary_constructors = true:suggestion

reference/Counter/CSharp-MVUX/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,5 +399,5 @@ FodyWeavers.xsd
399399

400400
# Single Target Config
401401
solution-config.props
402-
# Windows Publish Profiles
403-
!**/*.Windows/Properties/PublishProfiles/*.pubxml
402+
# Publish Profiles
403+
!**/Properties/PublishProfiles/*.pubxml

reference/Counter/CSharp-MVUX/.vsconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"Microsoft.VisualStudio.Component.Merq",
2929
"Component.Xamarin.RemotedSimulator",
3030
"Microsoft.VisualStudio.Component.MonoDebugger",
31-
"Component.Xamarin",
3231
"Microsoft.VisualStudio.ComponentGroup.Maui.All",
3332
"Component.Android.SDK34",
3433
"Component.Android.SDK33",
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.2.32210.308
4+
MinimumVisualStudioVersion = 15.0.26124.0
5+
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Counter", "Counter\Counter.csproj", "{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}"
7+
EndProject
8+
9+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{BADA71DC-7FFD-4EDC-9F28-FB74AEADC713}"
10+
ProjectSection(SolutionItems) = preProject
11+
.gitignore = .gitignore
12+
Directory.Build.props = Directory.Build.props
13+
Directory.Build.targets = Directory.Build.targets
14+
global.json = global.json
15+
Directory.Packages.props = Directory.Packages.props
16+
EndProjectSection
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Debug|ARM = Debug|ARM
22+
Debug|ARM64 = Debug|ARM64
23+
Debug|iPhone = Debug|iPhone
24+
Debug|iPhoneSimulator = Debug|iPhoneSimulator
25+
Debug|x64 = Debug|x64
26+
Debug|x86 = Debug|x86
27+
Release|Any CPU = Release|Any CPU
28+
Release|ARM = Release|ARM
29+
Release|ARM64 = Release|ARM64
30+
Release|iPhone = Release|iPhone
31+
Release|iPhoneSimulator = Release|iPhoneSimulator
32+
Release|x64 = Release|x64
33+
Release|x86 = Release|x86
34+
EndGlobalSection
35+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
36+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
39+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM.ActiveCfg = Debug|Any CPU
40+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM.Build.0 = Debug|Any CPU
41+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM.Deploy.0 = Debug|Any CPU
42+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM64.ActiveCfg = Debug|Any CPU
43+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM64.Build.0 = Debug|Any CPU
44+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|ARM64.Deploy.0 = Debug|Any CPU
45+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhone.ActiveCfg = Debug|Any CPU
46+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhone.Build.0 = Debug|Any CPU
47+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhone.Deploy.0 = Debug|Any CPU
48+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
49+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
50+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
51+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x64.ActiveCfg = Debug|Any CPU
52+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x64.Build.0 = Debug|Any CPU
53+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x64.Deploy.0 = Debug|Any CPU
54+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x86.ActiveCfg = Debug|Any CPU
55+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x86.Build.0 = Debug|Any CPU
56+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Debug|x86.Deploy.0 = Debug|Any CPU
57+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|Any CPU.ActiveCfg = Release|Any CPU
58+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|Any CPU.Build.0 = Release|Any CPU
59+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|Any CPU.Deploy.0 = Release|Any CPU
60+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM.ActiveCfg = Release|Any CPU
61+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM.Build.0 = Release|Any CPU
62+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM.Deploy.0 = Release|Any CPU
63+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM64.ActiveCfg = Release|Any CPU
64+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM64.Build.0 = Release|Any CPU
65+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|ARM64.Deploy.0 = Release|Any CPU
66+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhone.ActiveCfg = Release|Any CPU
67+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhone.Build.0 = Release|Any CPU
68+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhone.Deploy.0 = Release|Any CPU
69+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
70+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
71+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
72+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x64.ActiveCfg = Release|Any CPU
73+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x64.Build.0 = Release|Any CPU
74+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x64.Deploy.0 = Release|Any CPU
75+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x86.ActiveCfg = Release|Any CPU
76+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x86.Build.0 = Release|Any CPU
77+
{9ABFC288-18D4-4FCB-AC0F-43E913C05E05}.Release|x86.Deploy.0 = Release|Any CPU
78+
EndGlobalSection
79+
GlobalSection(SolutionProperties) = preSolution
80+
HideSolutionNode = FALSE
81+
EndGlobalSection
82+
GlobalSection(NestedProjects) = preSolution
83+
EndGlobalSection
84+
GlobalSection(ExtensibilityGlobals) = postSolution
85+
SolutionGuid = {27A4D17F-DC28-4E5C-8DD8-24E28DDB026E}
86+
EndGlobalSection
87+
EndGlobal

reference/Counter/CSharp-MVUX/Counter.Base/AppHead.xaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

reference/Counter/CSharp-MVUX/Counter.Base/AppHead.xaml.cs

Lines changed: 0 additions & 106 deletions
This file was deleted.

reference/Counter/CSharp-MVUX/Counter.Base/Counter.Base.csproj

Lines changed: 0 additions & 12 deletions
This file was deleted.

reference/Counter/CSharp-MVUX/Counter.Base/base.props

Lines changed: 0 additions & 30 deletions
This file was deleted.

reference/Counter/CSharp-MVUX/Counter.Mobile/Android/Main.Android.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

reference/Counter/CSharp-MVUX/Counter.Mobile/Android/MainActivity.Android.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)