diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/AbpApplicationsModule.cs b/aspnet-core/services/LINGYUN.Abp.Applications/AbpApplicationsModule.cs
new file mode 100644
index 000000000..1220143a1
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/AbpApplicationsModule.cs
@@ -0,0 +1,10 @@
+using Volo.Abp.Autofac;
+using Volo.Abp.Modularity;
+
+namespace LINGYUN.Abp.Applications;
+
+[DependsOn(
+ typeof(AbpAutofacModule))]
+public class AbpApplicationsModule : AbpModule
+{
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml
new file mode 100644
index 000000000..030290e0f
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml.cs b/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml.cs
new file mode 100644
index 000000000..3229847ee
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace LINGYUN.Abp.Applications;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml
new file mode 100644
index 000000000..17e24fb2c
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml.cs b/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml.cs
new file mode 100644
index 000000000..f98be473d
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace LINGYUN.Abp.Applications;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/LINGYUN.Abp.Applications.csproj b/aspnet-core/services/LINGYUN.Abp.Applications/LINGYUN.Abp.Applications.csproj
new file mode 100644
index 000000000..8b5882cff
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/LINGYUN.Abp.Applications.csproj
@@ -0,0 +1,64 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ LINGYUN.Abp.Applications
+ true
+ true
+ enable
+
+
+ LINGYUN.Abp.Applications
+
+
+ com.companyname.lingyun.abp.applications
+ 29c575ea-3256-46cb-b070-8ce749673efa
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml
new file mode 100644
index 000000000..1bb898031
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml.cs b/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml.cs
new file mode 100644
index 000000000..5dcb66d8e
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/MainPage.xaml.cs
@@ -0,0 +1,24 @@
+namespace LINGYUN.Abp.Applications;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+}
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/MauiProgram.cs b/aspnet-core/services/LINGYUN.Abp.Applications/MauiProgram.cs
new file mode 100644
index 000000000..2595ff970
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/MauiProgram.cs
@@ -0,0 +1,44 @@
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.FileProviders;
+using Microsoft.Extensions.Logging;
+using System.Reflection;
+using Volo.Abp;
+using Volo.Abp.Autofac;
+
+namespace LINGYUN.Abp.Applications;
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ })
+ .ConfigureContainer(new AbpAutofacServiceProviderFactory(new Autofac.ContainerBuilder()));
+
+ ConfigureConfiguration(builder);
+
+ builder.Services.AddApplication(options =>
+ {
+ options.Services.ReplaceConfiguration(builder.Configuration);
+ });
+
+ var app = builder.Build();
+
+ app.Services
+ .GetRequiredService()
+ .Initialize(app.Services);
+
+ return app;
+ }
+
+ private static void ConfigureConfiguration(MauiAppBuilder builder)
+ {
+ var assembly = typeof(App).GetTypeInfo().Assembly;
+ builder.Configuration.AddJsonFile(new EmbeddedFileProvider(assembly), "appsettings.json", optional: false, false);
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/AndroidManifest.xml b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 000000000..bdec9b590
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainActivity.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainActivity.cs
new file mode 100644
index 000000000..5b68d02cc
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainActivity.cs
@@ -0,0 +1,9 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace LINGYUN.Abp.Applications;
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainApplication.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainApplication.cs
new file mode 100644
index 000000000..50e6d2078
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/MainApplication.cs
@@ -0,0 +1,14 @@
+using Android.App;
+using Android.Runtime;
+
+namespace LINGYUN.Abp.Applications;
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/Resources/values/colors.xml b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 000000000..5cd160496
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/AppDelegate.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 000000000..b59d9e46c
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,8 @@
+using Foundation;
+
+namespace LINGYUN.Abp.Applications;
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Info.plist b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 000000000..0690e4725
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Program.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 000000000..9ff7c641a
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,14 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace LINGYUN.Abp.Applications;
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/Main.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/Main.cs
new file mode 100644
index 000000000..46fdc2279
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace LINGYUN.Abp.Applications;
+
+internal class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/tizen-manifest.xml b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 000000000..1881beb14
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml
new file mode 100644
index 000000000..e3be8d1cd
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml.cs
new file mode 100644
index 000000000..da1b7f328
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,23 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace LINGYUN.Abp.Applications.WinUI;
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/Package.appxmanifest b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 000000000..b8332daf3
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/app.manifest b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/app.manifest
new file mode 100644
index 000000000..89a01d3a6
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/AppDelegate.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 000000000..b59d9e46c
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,8 @@
+using Foundation;
+
+namespace LINGYUN.Abp.Applications;
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Info.plist b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Info.plist
new file mode 100644
index 000000000..358337bbd
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Program.cs b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Program.cs
new file mode 100644
index 000000000..9ff7c641a
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Platforms/iOS/Program.cs
@@ -0,0 +1,14 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace LINGYUN.Abp.Applications;
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Properties/launchSettings.json b/aspnet-core/services/LINGYUN.Abp.Applications/Properties/launchSettings.json
new file mode 100644
index 000000000..c16206a81
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appicon.svg b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appicon.svg
new file mode 100644
index 000000000..5f04fcfca
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appiconfg.svg b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 000000000..62d66d7a6
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Regular.ttf b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 000000000..e2644a54a
Binary files /dev/null and b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Semibold.ttf b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 000000000..f75b525a3
Binary files /dev/null and b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Images/dotnet_bot.svg b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Images/dotnet_bot.svg
new file mode 100644
index 000000000..51b1c330b
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Raw/AboutAssets.txt b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Raw/AboutAssets.txt
new file mode 100644
index 000000000..50b8a7b85
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Splash/splash.svg b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Splash/splash.svg
new file mode 100644
index 000000000..62d66d7a6
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Colors.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Colors.xaml
new file mode 100644
index 000000000..d183ec433
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Styles.xaml b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Styles.xaml
new file mode 100644
index 000000000..050b36c8e
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/services/LINGYUN.Abp.Applications/appsettings.json b/aspnet-core/services/LINGYUN.Abp.Applications/appsettings.json
new file mode 100644
index 000000000..5ccf10f25
--- /dev/null
+++ b/aspnet-core/services/LINGYUN.Abp.Applications/appsettings.json
@@ -0,0 +1,3 @@
+{
+
+}