From c2585845047299da028fb2039ea554c6313529cf Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Wed, 4 Mar 2026 17:55:33 +0900 Subject: [PATCH] Move Desktop to subfolder and add sln --- src/{ => MayShow.Desktop}/App.axaml | 0 src/{ => MayShow.Desktop}/App.axaml.cs | 0 .../Font Awesome 7 Brands-Regular-400.otf | Bin .../FontAwesome/Font Awesome 7 Free-Regular-400.otf | Bin .../FontAwesome/Font Awesome 7 Free-Solid-900.otf | Bin .../Assets/Fonts/FontAwesome/LICENSE.txt | 0 .../Assets/Fonts/Noto_Sans/OFL.txt | 0 .../Assets/Fonts/Noto_Sans/README.txt | 0 .../Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf | Bin .../Fonts/Noto_Sans/static/NotoSans-Italic.ttf | Bin .../Fonts/Noto_Sans/static/NotoSans-Regular.ttf | Bin .../Assets/Fonts/Noto_Sans_JP/OFL.txt | 0 .../Assets/Fonts/Noto_Sans_JP/README.txt | 0 .../Noto_Sans_JP/static/NotoSansJP-Regular.ttf | Bin .../Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf | Bin src/{ => MayShow.Desktop}/Assets/LICENSES.txt | 0 src/{ => MayShow.Desktop}/Directory.Build.props | 0 src/{ => MayShow.Desktop}/Helpers/ChangeNotifier.cs | 0 src/{ => MayShow.Desktop}/Helpers/Constants.cs | 0 .../Helpers/DataGridDropHandler.cs | 0 src/{ => MayShow.Desktop}/Helpers/ListExtensions.cs | 0 .../Helpers/SourceGenerationContext.cs | 0 src/{ => MayShow.Desktop}/Helpers/Utilities.cs | 0 .../Interfaces/ICanCheckShutdown.cs | 0 .../Interfaces/IChangeViewModel.cs | 0 .../Interfaces/ITopLevelGrabber.cs | 0 src/{ => MayShow.Desktop}/MainWindow.axaml | 0 src/{ => MayShow.Desktop}/MainWindow.axaml.cs | 0 src/{ => MayShow.Desktop}/MayShow-icon.ico | Bin .../MayShow.Desktop.csproj} | 0 src/{ => MayShow.Desktop}/Models/PDFReport.cs | 0 src/{ => MayShow.Desktop}/Models/ReportFile.cs | 0 src/{ => MayShow.Desktop}/Models/Settings.cs | 0 .../Models/ShutdownCheckOptions.cs | 0 src/{ => MayShow.Desktop}/Program.cs | 0 .../ViewModels/AboutViewModel.cs | 0 .../ViewModels/BaseViewModel.cs | 0 .../ViewModels/ConfirmViewModel.cs | 0 .../ViewModels/EditFileViewModel.cs | 0 .../ViewModels/MainViewModel.cs | 0 .../ViewModels/MainWindowViewModel.cs | 0 .../ViewModels/SettingsViewModel.cs | 0 .../ViewModels/ShutdownCheckViewModel.cs | 0 .../ViewModels/WarningDeleteItemViewModel.cs | 0 .../ViewModels/WarningViewModel.cs | 0 src/{ => MayShow.Desktop}/Views/AboutView.axaml | 0 src/{ => MayShow.Desktop}/Views/AboutView.axaml.cs | 0 src/{ => MayShow.Desktop}/Views/ConfirmView.axaml | 0 .../Views/ConfirmView.axaml.cs | 0 src/{ => MayShow.Desktop}/Views/EditFile.axaml | 0 src/{ => MayShow.Desktop}/Views/EditFile.axaml.cs | 0 src/{ => MayShow.Desktop}/Views/MainView.axaml | 0 src/{ => MayShow.Desktop}/Views/MainView.axaml.cs | 0 src/{ => MayShow.Desktop}/Views/SettingsView.axaml | 0 .../Views/SettingsView.axaml.cs | 0 .../Views/ShutdownCheckView.axaml | 0 .../Views/ShutdownCheckView.axaml.cs | 0 .../Views/WarningDeleteItem.axaml | 0 .../Views/WarningDeleteItem.axaml.cs | 0 src/{ => MayShow.Desktop}/Views/WarningView.axaml | 0 .../Views/WarningView.axaml.cs | 0 src/{ => MayShow.Desktop}/app.manifest | 0 src/MayShow.slnx | 5 +++++ 63 files changed, 5 insertions(+) rename src/{ => MayShow.Desktop}/App.axaml (100%) rename src/{ => MayShow.Desktop}/App.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/FontAwesome/Font Awesome 7 Brands-Regular-400.otf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Regular-400.otf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Solid-900.otf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/FontAwesome/LICENSE.txt (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans/OFL.txt (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans/README.txt (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans/static/NotoSans-Italic.ttf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans/static/NotoSans-Regular.ttf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans_JP/OFL.txt (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans_JP/README.txt (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf (100%) rename src/{ => MayShow.Desktop}/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf (100%) rename src/{ => MayShow.Desktop}/Assets/LICENSES.txt (100%) rename src/{ => MayShow.Desktop}/Directory.Build.props (100%) rename src/{ => MayShow.Desktop}/Helpers/ChangeNotifier.cs (100%) rename src/{ => MayShow.Desktop}/Helpers/Constants.cs (100%) rename src/{ => MayShow.Desktop}/Helpers/DataGridDropHandler.cs (100%) rename src/{ => MayShow.Desktop}/Helpers/ListExtensions.cs (100%) rename src/{ => MayShow.Desktop}/Helpers/SourceGenerationContext.cs (100%) rename src/{ => MayShow.Desktop}/Helpers/Utilities.cs (100%) rename src/{ => MayShow.Desktop}/Interfaces/ICanCheckShutdown.cs (100%) rename src/{ => MayShow.Desktop}/Interfaces/IChangeViewModel.cs (100%) rename src/{ => MayShow.Desktop}/Interfaces/ITopLevelGrabber.cs (100%) rename src/{ => MayShow.Desktop}/MainWindow.axaml (100%) rename src/{ => MayShow.Desktop}/MainWindow.axaml.cs (100%) rename src/{ => MayShow.Desktop}/MayShow-icon.ico (100%) rename src/{MayShow.csproj => MayShow.Desktop/MayShow.Desktop.csproj} (100%) rename src/{ => MayShow.Desktop}/Models/PDFReport.cs (100%) rename src/{ => MayShow.Desktop}/Models/ReportFile.cs (100%) rename src/{ => MayShow.Desktop}/Models/Settings.cs (100%) rename src/{ => MayShow.Desktop}/Models/ShutdownCheckOptions.cs (100%) rename src/{ => MayShow.Desktop}/Program.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/AboutViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/BaseViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/ConfirmViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/EditFileViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/MainViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/MainWindowViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/SettingsViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/ShutdownCheckViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/WarningDeleteItemViewModel.cs (100%) rename src/{ => MayShow.Desktop}/ViewModels/WarningViewModel.cs (100%) rename src/{ => MayShow.Desktop}/Views/AboutView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/AboutView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/ConfirmView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/ConfirmView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/EditFile.axaml (100%) rename src/{ => MayShow.Desktop}/Views/EditFile.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/MainView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/MainView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/SettingsView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/SettingsView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/ShutdownCheckView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/ShutdownCheckView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/WarningDeleteItem.axaml (100%) rename src/{ => MayShow.Desktop}/Views/WarningDeleteItem.axaml.cs (100%) rename src/{ => MayShow.Desktop}/Views/WarningView.axaml (100%) rename src/{ => MayShow.Desktop}/Views/WarningView.axaml.cs (100%) rename src/{ => MayShow.Desktop}/app.manifest (100%) create mode 100644 src/MayShow.slnx diff --git a/src/App.axaml b/src/MayShow.Desktop/App.axaml similarity index 100% rename from src/App.axaml rename to src/MayShow.Desktop/App.axaml diff --git a/src/App.axaml.cs b/src/MayShow.Desktop/App.axaml.cs similarity index 100% rename from src/App.axaml.cs rename to src/MayShow.Desktop/App.axaml.cs diff --git a/src/Assets/Fonts/FontAwesome/Font Awesome 7 Brands-Regular-400.otf b/src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Brands-Regular-400.otf similarity index 100% rename from src/Assets/Fonts/FontAwesome/Font Awesome 7 Brands-Regular-400.otf rename to src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Brands-Regular-400.otf diff --git a/src/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Regular-400.otf b/src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Regular-400.otf similarity index 100% rename from src/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Regular-400.otf rename to src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Regular-400.otf diff --git a/src/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Solid-900.otf b/src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Solid-900.otf similarity index 100% rename from src/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Solid-900.otf rename to src/MayShow.Desktop/Assets/Fonts/FontAwesome/Font Awesome 7 Free-Solid-900.otf diff --git a/src/Assets/Fonts/FontAwesome/LICENSE.txt b/src/MayShow.Desktop/Assets/Fonts/FontAwesome/LICENSE.txt similarity index 100% rename from src/Assets/Fonts/FontAwesome/LICENSE.txt rename to src/MayShow.Desktop/Assets/Fonts/FontAwesome/LICENSE.txt diff --git a/src/Assets/Fonts/Noto_Sans/OFL.txt b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans/OFL.txt similarity index 100% rename from src/Assets/Fonts/Noto_Sans/OFL.txt rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans/OFL.txt diff --git a/src/Assets/Fonts/Noto_Sans/README.txt b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans/README.txt similarity index 100% rename from src/Assets/Fonts/Noto_Sans/README.txt rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans/README.txt diff --git a/src/Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf similarity index 100% rename from src/Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Bold.ttf diff --git a/src/Assets/Fonts/Noto_Sans/static/NotoSans-Italic.ttf b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Italic.ttf similarity index 100% rename from src/Assets/Fonts/Noto_Sans/static/NotoSans-Italic.ttf rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Italic.ttf diff --git a/src/Assets/Fonts/Noto_Sans/static/NotoSans-Regular.ttf b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Regular.ttf similarity index 100% rename from src/Assets/Fonts/Noto_Sans/static/NotoSans-Regular.ttf rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans/static/NotoSans-Regular.ttf diff --git a/src/Assets/Fonts/Noto_Sans_JP/OFL.txt b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/OFL.txt similarity index 100% rename from src/Assets/Fonts/Noto_Sans_JP/OFL.txt rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/OFL.txt diff --git a/src/Assets/Fonts/Noto_Sans_JP/README.txt b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/README.txt similarity index 100% rename from src/Assets/Fonts/Noto_Sans_JP/README.txt rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/README.txt diff --git a/src/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf similarity index 100% rename from src/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-Regular.ttf diff --git a/src/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf b/src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf similarity index 100% rename from src/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf rename to src/MayShow.Desktop/Assets/Fonts/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf diff --git a/src/Assets/LICENSES.txt b/src/MayShow.Desktop/Assets/LICENSES.txt similarity index 100% rename from src/Assets/LICENSES.txt rename to src/MayShow.Desktop/Assets/LICENSES.txt diff --git a/src/Directory.Build.props b/src/MayShow.Desktop/Directory.Build.props similarity index 100% rename from src/Directory.Build.props rename to src/MayShow.Desktop/Directory.Build.props diff --git a/src/Helpers/ChangeNotifier.cs b/src/MayShow.Desktop/Helpers/ChangeNotifier.cs similarity index 100% rename from src/Helpers/ChangeNotifier.cs rename to src/MayShow.Desktop/Helpers/ChangeNotifier.cs diff --git a/src/Helpers/Constants.cs b/src/MayShow.Desktop/Helpers/Constants.cs similarity index 100% rename from src/Helpers/Constants.cs rename to src/MayShow.Desktop/Helpers/Constants.cs diff --git a/src/Helpers/DataGridDropHandler.cs b/src/MayShow.Desktop/Helpers/DataGridDropHandler.cs similarity index 100% rename from src/Helpers/DataGridDropHandler.cs rename to src/MayShow.Desktop/Helpers/DataGridDropHandler.cs diff --git a/src/Helpers/ListExtensions.cs b/src/MayShow.Desktop/Helpers/ListExtensions.cs similarity index 100% rename from src/Helpers/ListExtensions.cs rename to src/MayShow.Desktop/Helpers/ListExtensions.cs diff --git a/src/Helpers/SourceGenerationContext.cs b/src/MayShow.Desktop/Helpers/SourceGenerationContext.cs similarity index 100% rename from src/Helpers/SourceGenerationContext.cs rename to src/MayShow.Desktop/Helpers/SourceGenerationContext.cs diff --git a/src/Helpers/Utilities.cs b/src/MayShow.Desktop/Helpers/Utilities.cs similarity index 100% rename from src/Helpers/Utilities.cs rename to src/MayShow.Desktop/Helpers/Utilities.cs diff --git a/src/Interfaces/ICanCheckShutdown.cs b/src/MayShow.Desktop/Interfaces/ICanCheckShutdown.cs similarity index 100% rename from src/Interfaces/ICanCheckShutdown.cs rename to src/MayShow.Desktop/Interfaces/ICanCheckShutdown.cs diff --git a/src/Interfaces/IChangeViewModel.cs b/src/MayShow.Desktop/Interfaces/IChangeViewModel.cs similarity index 100% rename from src/Interfaces/IChangeViewModel.cs rename to src/MayShow.Desktop/Interfaces/IChangeViewModel.cs diff --git a/src/Interfaces/ITopLevelGrabber.cs b/src/MayShow.Desktop/Interfaces/ITopLevelGrabber.cs similarity index 100% rename from src/Interfaces/ITopLevelGrabber.cs rename to src/MayShow.Desktop/Interfaces/ITopLevelGrabber.cs diff --git a/src/MainWindow.axaml b/src/MayShow.Desktop/MainWindow.axaml similarity index 100% rename from src/MainWindow.axaml rename to src/MayShow.Desktop/MainWindow.axaml diff --git a/src/MainWindow.axaml.cs b/src/MayShow.Desktop/MainWindow.axaml.cs similarity index 100% rename from src/MainWindow.axaml.cs rename to src/MayShow.Desktop/MainWindow.axaml.cs diff --git a/src/MayShow-icon.ico b/src/MayShow.Desktop/MayShow-icon.ico similarity index 100% rename from src/MayShow-icon.ico rename to src/MayShow.Desktop/MayShow-icon.ico diff --git a/src/MayShow.csproj b/src/MayShow.Desktop/MayShow.Desktop.csproj similarity index 100% rename from src/MayShow.csproj rename to src/MayShow.Desktop/MayShow.Desktop.csproj diff --git a/src/Models/PDFReport.cs b/src/MayShow.Desktop/Models/PDFReport.cs similarity index 100% rename from src/Models/PDFReport.cs rename to src/MayShow.Desktop/Models/PDFReport.cs diff --git a/src/Models/ReportFile.cs b/src/MayShow.Desktop/Models/ReportFile.cs similarity index 100% rename from src/Models/ReportFile.cs rename to src/MayShow.Desktop/Models/ReportFile.cs diff --git a/src/Models/Settings.cs b/src/MayShow.Desktop/Models/Settings.cs similarity index 100% rename from src/Models/Settings.cs rename to src/MayShow.Desktop/Models/Settings.cs diff --git a/src/Models/ShutdownCheckOptions.cs b/src/MayShow.Desktop/Models/ShutdownCheckOptions.cs similarity index 100% rename from src/Models/ShutdownCheckOptions.cs rename to src/MayShow.Desktop/Models/ShutdownCheckOptions.cs diff --git a/src/Program.cs b/src/MayShow.Desktop/Program.cs similarity index 100% rename from src/Program.cs rename to src/MayShow.Desktop/Program.cs diff --git a/src/ViewModels/AboutViewModel.cs b/src/MayShow.Desktop/ViewModels/AboutViewModel.cs similarity index 100% rename from src/ViewModels/AboutViewModel.cs rename to src/MayShow.Desktop/ViewModels/AboutViewModel.cs diff --git a/src/ViewModels/BaseViewModel.cs b/src/MayShow.Desktop/ViewModels/BaseViewModel.cs similarity index 100% rename from src/ViewModels/BaseViewModel.cs rename to src/MayShow.Desktop/ViewModels/BaseViewModel.cs diff --git a/src/ViewModels/ConfirmViewModel.cs b/src/MayShow.Desktop/ViewModels/ConfirmViewModel.cs similarity index 100% rename from src/ViewModels/ConfirmViewModel.cs rename to src/MayShow.Desktop/ViewModels/ConfirmViewModel.cs diff --git a/src/ViewModels/EditFileViewModel.cs b/src/MayShow.Desktop/ViewModels/EditFileViewModel.cs similarity index 100% rename from src/ViewModels/EditFileViewModel.cs rename to src/MayShow.Desktop/ViewModels/EditFileViewModel.cs diff --git a/src/ViewModels/MainViewModel.cs b/src/MayShow.Desktop/ViewModels/MainViewModel.cs similarity index 100% rename from src/ViewModels/MainViewModel.cs rename to src/MayShow.Desktop/ViewModels/MainViewModel.cs diff --git a/src/ViewModels/MainWindowViewModel.cs b/src/MayShow.Desktop/ViewModels/MainWindowViewModel.cs similarity index 100% rename from src/ViewModels/MainWindowViewModel.cs rename to src/MayShow.Desktop/ViewModels/MainWindowViewModel.cs diff --git a/src/ViewModels/SettingsViewModel.cs b/src/MayShow.Desktop/ViewModels/SettingsViewModel.cs similarity index 100% rename from src/ViewModels/SettingsViewModel.cs rename to src/MayShow.Desktop/ViewModels/SettingsViewModel.cs diff --git a/src/ViewModels/ShutdownCheckViewModel.cs b/src/MayShow.Desktop/ViewModels/ShutdownCheckViewModel.cs similarity index 100% rename from src/ViewModels/ShutdownCheckViewModel.cs rename to src/MayShow.Desktop/ViewModels/ShutdownCheckViewModel.cs diff --git a/src/ViewModels/WarningDeleteItemViewModel.cs b/src/MayShow.Desktop/ViewModels/WarningDeleteItemViewModel.cs similarity index 100% rename from src/ViewModels/WarningDeleteItemViewModel.cs rename to src/MayShow.Desktop/ViewModels/WarningDeleteItemViewModel.cs diff --git a/src/ViewModels/WarningViewModel.cs b/src/MayShow.Desktop/ViewModels/WarningViewModel.cs similarity index 100% rename from src/ViewModels/WarningViewModel.cs rename to src/MayShow.Desktop/ViewModels/WarningViewModel.cs diff --git a/src/Views/AboutView.axaml b/src/MayShow.Desktop/Views/AboutView.axaml similarity index 100% rename from src/Views/AboutView.axaml rename to src/MayShow.Desktop/Views/AboutView.axaml diff --git a/src/Views/AboutView.axaml.cs b/src/MayShow.Desktop/Views/AboutView.axaml.cs similarity index 100% rename from src/Views/AboutView.axaml.cs rename to src/MayShow.Desktop/Views/AboutView.axaml.cs diff --git a/src/Views/ConfirmView.axaml b/src/MayShow.Desktop/Views/ConfirmView.axaml similarity index 100% rename from src/Views/ConfirmView.axaml rename to src/MayShow.Desktop/Views/ConfirmView.axaml diff --git a/src/Views/ConfirmView.axaml.cs b/src/MayShow.Desktop/Views/ConfirmView.axaml.cs similarity index 100% rename from src/Views/ConfirmView.axaml.cs rename to src/MayShow.Desktop/Views/ConfirmView.axaml.cs diff --git a/src/Views/EditFile.axaml b/src/MayShow.Desktop/Views/EditFile.axaml similarity index 100% rename from src/Views/EditFile.axaml rename to src/MayShow.Desktop/Views/EditFile.axaml diff --git a/src/Views/EditFile.axaml.cs b/src/MayShow.Desktop/Views/EditFile.axaml.cs similarity index 100% rename from src/Views/EditFile.axaml.cs rename to src/MayShow.Desktop/Views/EditFile.axaml.cs diff --git a/src/Views/MainView.axaml b/src/MayShow.Desktop/Views/MainView.axaml similarity index 100% rename from src/Views/MainView.axaml rename to src/MayShow.Desktop/Views/MainView.axaml diff --git a/src/Views/MainView.axaml.cs b/src/MayShow.Desktop/Views/MainView.axaml.cs similarity index 100% rename from src/Views/MainView.axaml.cs rename to src/MayShow.Desktop/Views/MainView.axaml.cs diff --git a/src/Views/SettingsView.axaml b/src/MayShow.Desktop/Views/SettingsView.axaml similarity index 100% rename from src/Views/SettingsView.axaml rename to src/MayShow.Desktop/Views/SettingsView.axaml diff --git a/src/Views/SettingsView.axaml.cs b/src/MayShow.Desktop/Views/SettingsView.axaml.cs similarity index 100% rename from src/Views/SettingsView.axaml.cs rename to src/MayShow.Desktop/Views/SettingsView.axaml.cs diff --git a/src/Views/ShutdownCheckView.axaml b/src/MayShow.Desktop/Views/ShutdownCheckView.axaml similarity index 100% rename from src/Views/ShutdownCheckView.axaml rename to src/MayShow.Desktop/Views/ShutdownCheckView.axaml diff --git a/src/Views/ShutdownCheckView.axaml.cs b/src/MayShow.Desktop/Views/ShutdownCheckView.axaml.cs similarity index 100% rename from src/Views/ShutdownCheckView.axaml.cs rename to src/MayShow.Desktop/Views/ShutdownCheckView.axaml.cs diff --git a/src/Views/WarningDeleteItem.axaml b/src/MayShow.Desktop/Views/WarningDeleteItem.axaml similarity index 100% rename from src/Views/WarningDeleteItem.axaml rename to src/MayShow.Desktop/Views/WarningDeleteItem.axaml diff --git a/src/Views/WarningDeleteItem.axaml.cs b/src/MayShow.Desktop/Views/WarningDeleteItem.axaml.cs similarity index 100% rename from src/Views/WarningDeleteItem.axaml.cs rename to src/MayShow.Desktop/Views/WarningDeleteItem.axaml.cs diff --git a/src/Views/WarningView.axaml b/src/MayShow.Desktop/Views/WarningView.axaml similarity index 100% rename from src/Views/WarningView.axaml rename to src/MayShow.Desktop/Views/WarningView.axaml diff --git a/src/Views/WarningView.axaml.cs b/src/MayShow.Desktop/Views/WarningView.axaml.cs similarity index 100% rename from src/Views/WarningView.axaml.cs rename to src/MayShow.Desktop/Views/WarningView.axaml.cs diff --git a/src/app.manifest b/src/MayShow.Desktop/app.manifest similarity index 100% rename from src/app.manifest rename to src/MayShow.Desktop/app.manifest diff --git a/src/MayShow.slnx b/src/MayShow.slnx new file mode 100644 index 0000000..4068b80 --- /dev/null +++ b/src/MayShow.slnx @@ -0,0 +1,5 @@ + + + + +