commit 98e44dca5e80fd88fb08a8a9751bb574086a9e00 Author: Donald Joyce <111136961+Dark-MatterSoftware@users.noreply.github.com> Date: Fri Aug 12 10:17:30 2022 -0500 Initial upload diff --git a/MauiLib.sln b/MauiLib.sln new file mode 100644 index 0000000..cb65902 --- /dev/null +++ b/MauiLib.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32804.467 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "MauiLibTest", "MauiLibTest.vbproj", "{4F208930-1943-4396-9337-A18FEE6DEE42}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4F208930-1943-4396-9337-A18FEE6DEE42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4F208930-1943-4396-9337-A18FEE6DEE42}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4F208930-1943-4396-9337-A18FEE6DEE42}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4F208930-1943-4396-9337-A18FEE6DEE42}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EC0DEF9B-F44E-4EE1-A3E0-3557969FB2CF} + EndGlobalSection +EndGlobal diff --git a/MauiLib.vbproj b/MauiLib.vbproj new file mode 100644 index 0000000..3fb2ceb --- /dev/null +++ b/MauiLib.vbproj @@ -0,0 +1,20 @@ + + + + net6.0;net6.0-android;net6.0-ios;net6.0-maccatalyst + $(TargetFrameworks);net6.0-windows10.0.19041.0 + + + true + true + enable + + 14.2 + 14.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + diff --git a/MauiLib.vbproj.user b/MauiLib.vbproj.user new file mode 100644 index 0000000..5971569 --- /dev/null +++ b/MauiLib.vbproj.user @@ -0,0 +1,6 @@ + + + + Simulator + + \ No newline at end of file diff --git a/Start.vb b/Start.vb new file mode 100644 index 0000000..74978c6 --- /dev/null +++ b/Start.vb @@ -0,0 +1,20 @@ +Imports Microsoft.Maui.Controls + +Namespace MauiLib + ' All the code in this file is included in all platforms. + Public Class Start + Inherits ContentPage + + 'Add controls here + + Public Sub New() + + 'Specify Controls with customization and then add parent to Me.Content + + + + 'Me.Content = 'Replace parent control here' + + End Sub + End Class +End Namespace