• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

なろうブックマーク分析用ツールのPrism+MAUIサンプル実装


Commit MetaInfo

Revisión7d48ea9f81f06615d7841dc6b347c3270b1d8a3a (tree)
Tiempo2022-08-25 04:13:52
Autoryoshy <yoshy.org.bitbucket@gz.j...>
Commiteryoshy

Log Message

[UPG] ObservableCollectionMod を CleanAuLait.ObservableCollectionMod に差し替え
[CLEAN] コードクリーンナップ

Cambiar Resumen

Diferencia incremental

--- a/TestNarou2.Adaptor/Boundary/Controller/IAppWindowController.cs
+++ b/TestNarou2.Adaptor/Boundary/Controller/IAppWindowController.cs
@@ -1,6 +1,4 @@
11 using CleanAuLait.Adaptor.Boundary.Controller;
2-using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
3-using TestNarou2.Domain.Model.Entity;
42
53 namespace TestNarou2.Adaptor.Boundary.Controller
64 {
--- a/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkCategoryViewModel.cs
+++ b/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkCategoryViewModel.cs
@@ -1,4 +1,4 @@
1-using ObservableCollections;
1+using CleanAuLait.ObservableCollectionsMod;
22 using Reactive.Bindings;
33 using TestNarou2.Adaptor.Boundary.Controller;
44 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
--- a/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkDetailListViewModel.cs
+++ b/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkDetailListViewModel.cs
@@ -1,7 +1,5 @@
1-using ObservableCollections;
1+using CleanAuLait.ObservableCollectionsMod;
22 using Reactive.Bindings;
3-using System;
4-using System.ComponentModel;
53 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
64 using TestNarou2.Domain.Model.Entity;
75 using TestNarou2.Domain.Model.Entity.Child;
--- a/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkViewModel.cs
+++ b/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/IBookmarkViewModel.cs
@@ -1,6 +1,4 @@
1-using System;
2-
3-namespace TestNarou2.Adaptor.Boundary.Gateway.ViewModel
1+namespace TestNarou2.Adaptor.Boundary.Gateway.ViewModel
42 {
53 public interface IBookmarkViewModel
64 {
--- a/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/ILoginFormViewModel.cs
+++ b/TestNarou2.Adaptor/Boundary/Gateway/ViewModel/ILoginFormViewModel.cs
@@ -1,5 +1,4 @@
11 using Reactive.Bindings;
2-using System;
32 using TestNarou2.Domain.Model.Config;
43
54 namespace TestNarou2.Adaptor.Boundary.Gateway.ViewModel
--- a/TestNarou2.Adaptor/Controller/AppWindowController.cs
+++ b/TestNarou2.Adaptor/Controller/AppWindowController.cs
@@ -3,8 +3,6 @@ using CleanAuLait.Adaptor.Controller;
33 using CleanAuLait.Adaptor.Controller.DI;
44 using NLog;
55 using TestNarou2.Adaptor.Boundary.Controller;
6-using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
7-using TestNarou2.Domain.Model.Entity;
86 using TestNarou2.UseCase.Request;
97
108 namespace TestNarou2.Adaptor.Controller
--- a/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkCategoryViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkCategoryViewModel.cs
@@ -1,6 +1,5 @@
1-using NLog;
2-using ObservableCollections;
3-using Prism.Navigation;
1+using CleanAuLait.ObservableCollectionsMod;
2+using NLog;
43 using Reactive.Bindings;
54 using Reactive.Bindings.Extensions;
65 using System.ComponentModel;
--- a/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkDetailListViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkDetailListViewModel.cs
@@ -1,5 +1,5 @@
1-using NLog;
2-using ObservableCollections;
1+using CleanAuLait.ObservableCollectionsMod;
2+using NLog;
33 using Reactive.Bindings;
44 using Reactive.Bindings.Extensions;
55 using System.ComponentModel;
--- a/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/BookmarkViewModel.cs
@@ -1,5 +1,4 @@
1-using Prism.Navigation;
2-using System.ComponentModel;
1+using System.ComponentModel;
32 using System.Reactive.Disposables;
43 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
54
--- a/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkCategoryRowViewModel.AfterMap.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkCategoryRowViewModel.AfterMap.cs
@@ -1,6 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings.Extensions;
3-using System;
43 using TestNarou2.Domain.Model.Entity.Child;
54
65 namespace TestNarou2.Adaptor.Gateway.ViewModel.Child
--- a/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkCategoryRowViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkCategoryRowViewModel.cs
@@ -1,5 +1,4 @@
11 using Reactive.Bindings;
2-using System;
32 using System.Reactive.Disposables;
43 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
54 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
--- a/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkDetailListRowViewModel.AfterMap.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkDetailListRowViewModel.AfterMap.cs
@@ -1,6 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings.Extensions;
3-using System;
43 using TestNarou2.Domain.Model.Entity.Child;
54
65 namespace TestNarou2.Adaptor.Gateway.ViewModel.Child
--- a/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkDetailListRowViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/Child/BookmarkDetailListRowViewModel.cs
@@ -1,5 +1,4 @@
11 using Reactive.Bindings;
2-using System;
32 using System.Reactive.Disposables;
43 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
54 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
--- a/TestNarou2.Adaptor/Gateway/ViewModel/MainWindowViewModel.cs
+++ b/TestNarou2.Adaptor/Gateway/ViewModel/MainWindowViewModel.cs
@@ -1,5 +1,4 @@
1-using Prism.Navigation;
2-using Reactive.Bindings;
1+using Reactive.Bindings;
32 using Reactive.Bindings.Extensions;
43 using System.Reactive.Disposables;
54 using TestNarou2.Adaptor.Boundary.Controller;
--- a/TestNarou2.Adaptor/Presenter/NarouRefreshBookmarkDetailListPresenter.cs
+++ b/TestNarou2.Adaptor/Presenter/NarouRefreshBookmarkDetailListPresenter.cs
@@ -1,5 +1,4 @@
1-using TestNarou2.Adaptor.Boundary.Controller;
2-using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
1+using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
32 using TestNarou2.UseCase.Boundary.Presenter;
43 using TestNarou2.UseCase.Request;
54 using TestNarou2.UseCase.Response;
--- a/TestNarou2.Adaptor/Translator/BookmarkCategoryRowViewModelTranslator.cs
+++ b/TestNarou2.Adaptor/Translator/BookmarkCategoryRowViewModelTranslator.cs
@@ -1,10 +1,7 @@
11 using AutoMapper;
2-using Reactive.Bindings;
3-using Reactive.Bindings.Extensions;
42 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
53 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
64 using TestNarou2.Adaptor.Gateway.ViewModel.Child;
7-using TestNarou2.Adaptor.Translator.Converter;
85 using TestNarou2.Domain.Model.Entity.Child;
96
107 namespace TestNarou2.Adaptor.Translator
--- a/TestNarou2.Adaptor/Translator/BookmarkDetailListRowViewModelTranslator.cs
+++ b/TestNarou2.Adaptor/Translator/BookmarkDetailListRowViewModelTranslator.cs
@@ -1,6 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using Reactive.Bindings.Extensions;
43 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
54 using TestNarou2.Adaptor.Boundary.Gateway.ViewModel.Child;
65 using TestNarou2.Adaptor.Gateway.ViewModel.Child;
--- a/TestNarou2.Adaptor/Translator/Converter/FlagConverter.cs
+++ b/TestNarou2.Adaptor/Translator/Converter/FlagConverter.cs
@@ -1,7 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using System;
4-using System.Linq;
53 using System.Reactive.Linq;
64
75 namespace TestNarou2.Adaptor.Translator.Converter
--- a/TestNarou2.Adaptor/Translator/Converter/MinToHourConverter.cs
+++ b/TestNarou2.Adaptor/Translator/Converter/MinToHourConverter.cs
@@ -1,7 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using System;
4-using System.Linq;
53 using System.Reactive.Linq;
64
75 namespace TestNarou2.Adaptor.Translator.Converter
--- a/TestNarou2.Adaptor/Translator/Converter/PointPerMinResolver.cs
+++ b/TestNarou2.Adaptor/Translator/Converter/PointPerMinResolver.cs
@@ -1,6 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using System;
43 using System.Reactive.Linq;
54 using TestNarou2.Adaptor.Gateway.ViewModel.Child;
65 using TestNarou2.Domain.Model.Entity.Child;
--- a/TestNarou2.Adaptor/Translator/Converter/SubstringConverter.cs
+++ b/TestNarou2.Adaptor/Translator/Converter/SubstringConverter.cs
@@ -1,7 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using System;
4-using System.Linq;
53 using System.Reactive.Linq;
64
75 namespace TestNarou2.Adaptor.Translator.Converter
--- a/TestNarou2.Adaptor/Translator/Converter/SummaryResolver.cs
+++ b/TestNarou2.Adaptor/Translator/Converter/SummaryResolver.cs
@@ -1,6 +1,5 @@
11 using AutoMapper;
22 using Reactive.Bindings;
3-using System.Collections.Generic;
43 using System.Reactive.Linq;
54 using System.Text;
65 using TestNarou2.Adaptor.Gateway.ViewModel.Child;
--- a/TestNarou2.Domain/DomainModule.cs
+++ b/TestNarou2.Domain/DomainModule.cs
@@ -1,6 +1,4 @@
11 using NLog;
2-using Prism.Ioc;
3-using Prism.Modularity;
42 using TestNarou2.Domain.Boundary.Service;
53 using TestNarou2.Domain.Service;
64 using TestNarou2.Domain.Translator;
--- a/TestNarou2.Domain/Model/Config/NarouLoginSettings.cs
+++ b/TestNarou2.Domain/Model/Config/NarouLoginSettings.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.Core.Converter;
2-using System;
32 using System.Text.Json.Serialization;
43
54 namespace TestNarou2.Domain.Model.Config
--- a/TestNarou2.Domain/Model/Entity/BookmarkCategory.cs
+++ b/TestNarou2.Domain/Model/Entity/BookmarkCategory.cs
@@ -1,6 +1,4 @@
11 using ObservableCollections;
2-using System;
3-using System.Collections.Generic;
42 using TestNarou2.Domain.Model.Entity.Child;
53
64 namespace TestNarou2.Domain.Model.Entity
--- a/TestNarou2.Domain/Model/Entity/BookmarkDetailList.cs
+++ b/TestNarou2.Domain/Model/Entity/BookmarkDetailList.cs
@@ -1,6 +1,4 @@
11 using ObservableCollections;
2-using System;
3-using System.Collections.Generic;
42 using TestNarou2.Domain.Model.Entity.Child;
53
64 namespace TestNarou2.Domain.Model.Entity
--- a/TestNarou2.Domain/Model/Entity/Child/BookmarkCategoryRow.cs
+++ b/TestNarou2.Domain/Model/Entity/Child/BookmarkCategoryRow.cs
@@ -1,6 +1,5 @@
11 using Reactive.Bindings;
22 using Reactive.Bindings.Extensions;
3-using System;
43 using System.Reactive.Disposables;
54
65 namespace TestNarou2.Domain.Model.Entity.Child
--- a/TestNarou2.Domain/Model/Entity/Child/BookmarkDetailListRow.cs
+++ b/TestNarou2.Domain/Model/Entity/Child/BookmarkDetailListRow.cs
@@ -1,6 +1,5 @@
11 using Reactive.Bindings;
22 using Reactive.Bindings.Extensions;
3-using System;
43 using System.Reactive.Disposables;
54
65 namespace TestNarou2.Domain.Model.Entity.Child
--- a/TestNarou2.Domain/Service/NarouService.cs
+++ b/TestNarou2.Domain/Service/NarouService.cs
@@ -1,7 +1,4 @@
11 using NLog;
2-using Prism.Navigation;
3-using System.Collections.Generic;
4-using System.Linq;
52 using TestNarou2.Domain.Boundary.Repository;
63 using TestNarou2.Domain.Boundary.Service;
74 using TestNarou2.Domain.Model.API;
--- a/TestNarou2.Infra/Core/Resource/ImageHelper.cs
+++ b/TestNarou2.Infra/Core/Resource/ImageHelper.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.Core.Resource;
2-using TestNarou2.Infra.Core.Resource;
32
43 namespace TestNarou2.Infra.Core.Resource
54 {
--- a/TestNarou2.Infra/InfraModule.cs
+++ b/TestNarou2.Infra/InfraModule.cs
@@ -1,7 +1,5 @@
11 using CleanAuLait.Core.Resource;
22 using NLog;
3-using Prism.Ioc;
4-using Prism.Modularity;
53 using TestNarou2.Infra.Boundary.Resource;
64 using TestNarou2.Infra.Core.Resource;
75
--- a/TestNarou2.Infra/TestNarou2.90Infra.csproj
+++ b/TestNarou2.Infra/TestNarou2.90Infra.csproj
@@ -25,7 +25,7 @@
2525
2626 <ItemGroup>
2727 <PackageReference Include="AutoMapper" Version="11.0.1" />
28- <PackageReference Include="NLog" Version="5.0.1" />
28+ <PackageReference Include="NLog" Version="5.0.2" />
2929 <PackageReference Include="Prism.DryIoc.Maui" Version="8.1.254-beta" />
3030 <PackageReference Include="Prism.Maui.Rx" Version="8.1.254-beta" />
3131 <PackageReference Include="ReactiveProperty" Version="8.1.2" />
@@ -33,7 +33,7 @@
3333
3434 <ItemGroup>
3535 <ProjectReference Include="..\..\CleanAuLait.MAUI\CleanAuLait.MAUI.csproj" />
36- <ProjectReference Include="..\..\ObservableCollectionsMod\src\ObservableCollections\ObservableCollections.csproj" />
36+ <ProjectReference Include="..\..\CleanAuLait.ObservableCollectionsMod\CleanAuLait.ObservableCollectionsMod.csproj" />
3737 </ItemGroup>
3838
3939 </Project>
--- a/TestNarou2.OuterEdge/RegionNavigationRegistrationExtensionsPatched.cs
+++ b/TestNarou2.OuterEdge/RegionNavigationRegistrationExtensionsPatched.cs
@@ -1,9 +1,4 @@
11 using Prism.Common;
2-using System;
3-using System.Collections.Generic;
4-using System.Linq;
5-using System.Text;
6-using System.Threading.Tasks;
72
83 namespace TestNarou2.OuterEdge
94 {
--- a/TestNarou2.OuterEdge/Repository/API/HttpClientHelper.cs
+++ b/TestNarou2.OuterEdge/Repository/API/HttpClientHelper.cs
@@ -1,13 +1,7 @@
11 using NLog;
2-using Prism.Navigation;
3-using System;
4-using System.Collections.Generic;
5-using System.IO;
62 using System.IO.Compression;
73 using System.Net;
8-using System.Net.Http;
94 using System.Text;
10-using System.Threading.Tasks;
115
126 namespace TestNarou2.OuterEdge.Repository.API
137 {
--- a/TestNarou2.OuterEdge/Repository/API/NarouRepository.cs
+++ b/TestNarou2.OuterEdge/Repository/API/NarouRepository.cs
@@ -1,7 +1,6 @@
11 using CleanAuLait.Core.Converter;
22 using CleanAuLait.OuterEdge.Repository;
33 using NLog;
4-using System.Collections.Generic;
54 using System.Text.RegularExpressions;
65 using TestNarou2.Domain.Boundary.Repository;
76 using TestNarou2.Domain.Model.API;
--- a/TestNarou2.UseCase/Request/AppConfigLoadRequest.cs
+++ b/TestNarou2.UseCase/Request/AppConfigLoadRequest.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.UseCase.Request;
2-using System;
32 using TestNarou2.UseCase.Boundary.Interactor;
43
54 namespace TestNarou2.UseCase.Request
--- a/TestNarou2.UseCase/Request/AppConfigSaveRequest.cs
+++ b/TestNarou2.UseCase/Request/AppConfigSaveRequest.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.UseCase.Request;
2-using System;
32 using TestNarou2.UseCase.Boundary.Interactor;
43
54 namespace TestNarou2.UseCase.Request
--- a/TestNarou2.UseCase/Request/NarouLoginRequest.cs
+++ b/TestNarou2.UseCase/Request/NarouLoginRequest.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.UseCase.Request;
2-using System;
32 using TestNarou2.UseCase.Boundary.Interactor;
43
54 namespace TestNarou2.UseCase.Request
--- a/TestNarou2.UseCase/Request/NarouLogoutRequest.cs
+++ b/TestNarou2.UseCase/Request/NarouLogoutRequest.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.UseCase.Request;
2-using System;
32 using TestNarou2.UseCase.Boundary.Interactor;
43
54 namespace TestNarou2.UseCase.Request
--- a/TestNarou2.UseCase/Request/NarouRefreshBookmarkDetailListRequest.cs
+++ b/TestNarou2.UseCase/Request/NarouRefreshBookmarkDetailListRequest.cs
@@ -1,5 +1,4 @@
11 using CleanAuLait.UseCase.Request;
2-using System;
32 using TestNarou2.UseCase.Boundary.Interactor;
43
54 namespace TestNarou2.UseCase.Request
--- a/TestNarou2.UseCase/UseCaseModule.cs
+++ b/TestNarou2.UseCase/UseCaseModule.cs
@@ -1,6 +1,4 @@
11 using NLog;
2-using Prism.Ioc;
3-using Prism.Modularity;
42 using TestNarou2.UseCase.Boundary.Interactor;
53 using TestNarou2.UseCase.Interactor;
64
--- a/TestNarou2.sln
+++ b/TestNarou2.sln
@@ -20,12 +20,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestNarou2.40OuterEdge", "T
2020 EndProject
2121 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CleanAuLait", "..\CleanAuLait\CleanAuLait.csproj", "{66EAF439-CE6C-40F3-8B5D-166D36A7DE3C}"
2222 EndProject
23-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ObservableCollections", "..\ObservableCollectionsMod\src\ObservableCollections\ObservableCollections.csproj", "{9EA4EC49-C44A-4955-989A-443E126B3FCA}"
24-EndProject
2523 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CleanAuLait.MAUI", "..\CleanAuLait.MAUI\CleanAuLait.MAUI.csproj", "{6992DC9A-930F-4380-B56E-7F64610636A9}"
2624 EndProject
2725 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CleanAuLait.Prism", "..\CleanAuLait.Prism\CleanAuLait.Prism.csproj", "{63D09642-E21C-44FE-981D-0E0CC5DA6D7E}"
2826 EndProject
27+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CleanAuLait.ObservableCollectionsMod", "..\CleanAuLait.ObservableCollectionsMod\CleanAuLait.ObservableCollectionsMod.csproj", "{6901733E-1944-48C0-8C61-2418ACE94AD3}"
28+EndProject
2929 Global
3030 GlobalSection(SolutionConfigurationPlatforms) = preSolution
3131 Debug|Any CPU = Debug|Any CPU
@@ -62,10 +62,6 @@ Global
6262 {66EAF439-CE6C-40F3-8B5D-166D36A7DE3C}.Debug|Any CPU.Build.0 = Debug|Any CPU
6363 {66EAF439-CE6C-40F3-8B5D-166D36A7DE3C}.Release|Any CPU.ActiveCfg = Release|Any CPU
6464 {66EAF439-CE6C-40F3-8B5D-166D36A7DE3C}.Release|Any CPU.Build.0 = Release|Any CPU
65- {9EA4EC49-C44A-4955-989A-443E126B3FCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
66- {9EA4EC49-C44A-4955-989A-443E126B3FCA}.Debug|Any CPU.Build.0 = Debug|Any CPU
67- {9EA4EC49-C44A-4955-989A-443E126B3FCA}.Release|Any CPU.ActiveCfg = Release|Any CPU
68- {9EA4EC49-C44A-4955-989A-443E126B3FCA}.Release|Any CPU.Build.0 = Release|Any CPU
6965 {6992DC9A-930F-4380-B56E-7F64610636A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7066 {6992DC9A-930F-4380-B56E-7F64610636A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
7167 {6992DC9A-930F-4380-B56E-7F64610636A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -74,6 +70,10 @@ Global
7470 {63D09642-E21C-44FE-981D-0E0CC5DA6D7E}.Debug|Any CPU.Build.0 = Debug|Any CPU
7571 {63D09642-E21C-44FE-981D-0E0CC5DA6D7E}.Release|Any CPU.ActiveCfg = Release|Any CPU
7672 {63D09642-E21C-44FE-981D-0E0CC5DA6D7E}.Release|Any CPU.Build.0 = Release|Any CPU
73+ {6901733E-1944-48C0-8C61-2418ACE94AD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
74+ {6901733E-1944-48C0-8C61-2418ACE94AD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
75+ {6901733E-1944-48C0-8C61-2418ACE94AD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
76+ {6901733E-1944-48C0-8C61-2418ACE94AD3}.Release|Any CPU.Build.0 = Release|Any CPU
7777 EndGlobalSection
7878 GlobalSection(SolutionProperties) = preSolution
7979 HideSolutionNode = FALSE
--- a/TestNarou2/App.xaml.cs
+++ b/TestNarou2/App.xaml.cs
@@ -1,6 +1,4 @@
1-using TestNarou2.OuterEdge.UI.View;
2-
3-namespace TestNarou2;
1+namespace TestNarou2;
42
53 public partial class App : Application
64 {
--- a/TestNarou2/MauiProgram.cs
+++ b/TestNarou2/MauiProgram.cs
@@ -2,12 +2,8 @@
22 using CleanAuLait;
33 using CleanAuLait.Core.Log;
44 using NLog;
5-using Prism.Common;
6-using Prism.Ioc;
7-using Prism.Navigation.Xaml;
85 using System.Reflection;
96 using TestNarou2.Adaptor;
10-using TestNarou2.Adaptor.Boundary.Gateway.ViewModel;
117 using TestNarou2.Core.Mapper;
128 using TestNarou2.Domain;
139 using TestNarou2.Infra;
--- a/TestNarou2/Platforms/Windows/App.xaml.cs
+++ b/TestNarou2/Platforms/Windows/App.xaml.cs
@@ -1,6 +1,4 @@
1-using Microsoft.UI.Xaml;
2-
3-// To learn more about WinUI, the WinUI project structure,
1+// To learn more about WinUI, the WinUI project structure,
42 // and more about our project templates, see: http://aka.ms/winui-project-info.
53
64 namespace TestNarou2.WinUI;