From 85381d258f627b8104d0637e58758d2ca763f64b Mon Sep 17 00:00:00 2001 From: Christopher Meinhold Date: Fri, 30 Aug 2024 06:36:09 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TourismusDöbeln.sln | 27 ++ TourismusDöbeln/App.xaml | 14 + TourismusDöbeln/App.xaml.cs | 12 + TourismusDöbeln/AppShell.xaml | 15 + TourismusDöbeln/AppShell.xaml.cs | 10 + TourismusDöbeln/MainPage.xaml | 36 ++ TourismusDöbeln/MainPage.xaml.cs | 25 + TourismusDöbeln/MauiProgram.cs | 25 + .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + .../Platforms/MacCatalyst/Info.plist | 38 ++ .../Platforms/MacCatalyst/Program.cs | 16 + TourismusDöbeln/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + TourismusDöbeln/Platforms/Windows/App.xaml | 8 + TourismusDöbeln/Platforms/Windows/App.xaml.cs | 25 + .../Platforms/Windows/Package.appxmanifest | 46 ++ .../Platforms/Windows/app.manifest | 15 + TourismusDöbeln/Platforms/iOS/AppDelegate.cs | 10 + TourismusDöbeln/Platforms/iOS/Info.plist | 32 ++ TourismusDöbeln/Platforms/iOS/Program.cs | 16 + .../Properties/launchSettings.json | 8 + TourismusDöbeln/Resources/AppIcon/appicon.svg | 4 + .../Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111168 bytes .../Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes TourismusDöbeln/Resources/Raw/AboutAssets.txt | 15 + TourismusDöbeln/Resources/Splash/splash.svg | 8 + TourismusDöbeln/Resources/Styles/Colors.xaml | 45 ++ TourismusDöbeln/Resources/Styles/Styles.xaml | 427 ++++++++++++++++++ TourismusDöbeln/TourismusDöbeln.csproj | 65 +++ 36 files changed, 1045 insertions(+) create mode 100644 TourismusDöbeln.sln create mode 100644 TourismusDöbeln/App.xaml create mode 100644 TourismusDöbeln/App.xaml.cs create mode 100644 TourismusDöbeln/AppShell.xaml create mode 100644 TourismusDöbeln/AppShell.xaml.cs create mode 100644 TourismusDöbeln/MainPage.xaml create mode 100644 TourismusDöbeln/MainPage.xaml.cs create mode 100644 TourismusDöbeln/MauiProgram.cs create mode 100644 TourismusDöbeln/Platforms/Android/AndroidManifest.xml create mode 100644 TourismusDöbeln/Platforms/Android/MainActivity.cs create mode 100644 TourismusDöbeln/Platforms/Android/MainApplication.cs create mode 100644 TourismusDöbeln/Platforms/Android/Resources/values/colors.xml create mode 100644 TourismusDöbeln/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 TourismusDöbeln/Platforms/MacCatalyst/Entitlements.plist create mode 100644 TourismusDöbeln/Platforms/MacCatalyst/Info.plist create mode 100644 TourismusDöbeln/Platforms/MacCatalyst/Program.cs create mode 100644 TourismusDöbeln/Platforms/Tizen/Main.cs create mode 100644 TourismusDöbeln/Platforms/Tizen/tizen-manifest.xml create mode 100644 TourismusDöbeln/Platforms/Windows/App.xaml create mode 100644 TourismusDöbeln/Platforms/Windows/App.xaml.cs create mode 100644 TourismusDöbeln/Platforms/Windows/Package.appxmanifest create mode 100644 TourismusDöbeln/Platforms/Windows/app.manifest create mode 100644 TourismusDöbeln/Platforms/iOS/AppDelegate.cs create mode 100644 TourismusDöbeln/Platforms/iOS/Info.plist create mode 100644 TourismusDöbeln/Platforms/iOS/Program.cs create mode 100644 TourismusDöbeln/Properties/launchSettings.json create mode 100644 TourismusDöbeln/Resources/AppIcon/appicon.svg create mode 100644 TourismusDöbeln/Resources/AppIcon/appiconfg.svg create mode 100644 TourismusDöbeln/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 TourismusDöbeln/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 TourismusDöbeln/Resources/Images/dotnet_bot.png create mode 100644 TourismusDöbeln/Resources/Raw/AboutAssets.txt create mode 100644 TourismusDöbeln/Resources/Splash/splash.svg create mode 100644 TourismusDöbeln/Resources/Styles/Colors.xaml create mode 100644 TourismusDöbeln/Resources/Styles/Styles.xaml create mode 100644 TourismusDöbeln/TourismusDöbeln.csproj diff --git a/TourismusDöbeln.sln b/TourismusDöbeln.sln new file mode 100644 index 0000000..e5d8413 --- /dev/null +++ b/TourismusDöbeln.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TourismusDöbeln", "TourismusDöbeln\TourismusDöbeln.csproj", "{BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Release|Any CPU.Build.0 = Release|Any CPU + {BB87CB22-5FF9-474A-B1EA-A3C3DC1B4733}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7DFFDE13-6BDE-4DAA-A620-E43CCC67CB42} + EndGlobalSection +EndGlobal diff --git a/TourismusDöbeln/App.xaml b/TourismusDöbeln/App.xaml new file mode 100644 index 0000000..e166515 --- /dev/null +++ b/TourismusDöbeln/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/TourismusDöbeln/App.xaml.cs b/TourismusDöbeln/App.xaml.cs new file mode 100644 index 0000000..789bb72 --- /dev/null +++ b/TourismusDöbeln/App.xaml.cs @@ -0,0 +1,12 @@ +namespace TourismusDöbeln +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/TourismusDöbeln/AppShell.xaml b/TourismusDöbeln/AppShell.xaml new file mode 100644 index 0000000..8b6eb0b --- /dev/null +++ b/TourismusDöbeln/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/TourismusDöbeln/AppShell.xaml.cs b/TourismusDöbeln/AppShell.xaml.cs new file mode 100644 index 0000000..bbd9176 --- /dev/null +++ b/TourismusDöbeln/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace TourismusDöbeln +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/TourismusDöbeln/MainPage.xaml b/TourismusDöbeln/MainPage.xaml new file mode 100644 index 0000000..a7c590f --- /dev/null +++ b/TourismusDöbeln/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +