diff --git a/MultiInject.sln b/MultiInject.sln
new file mode 100644
index 0000000..50388c6
--- /dev/null
+++ b/MultiInject.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.11.35327.3
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiInject", "MultiInject\MultiInject.csproj", "{413B359F-3543-4E64-BC1F-D8852F93D74B}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {413B359F-3543-4E64-BC1F-D8852F93D74B}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {25EF88E4-ECB4-4553-AD10-495BB7A4CE0A}
+ EndGlobalSection
+EndGlobal
diff --git a/MultiInject/App.xaml b/MultiInject/App.xaml
new file mode 100644
index 0000000..80a2c5f
--- /dev/null
+++ b/MultiInject/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MultiInject/App.xaml.cs b/MultiInject/App.xaml.cs
new file mode 100644
index 0000000..9fc1efa
--- /dev/null
+++ b/MultiInject/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace MultiInject
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MultiInject/AppShell.xaml b/MultiInject/AppShell.xaml
new file mode 100644
index 0000000..581d047
--- /dev/null
+++ b/MultiInject/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/MultiInject/AppShell.xaml.cs b/MultiInject/AppShell.xaml.cs
new file mode 100644
index 0000000..e16b76e
--- /dev/null
+++ b/MultiInject/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace MultiInject
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MultiInject/MainPage.xaml b/MultiInject/MainPage.xaml
new file mode 100644
index 0000000..12dc18b
--- /dev/null
+++ b/MultiInject/MainPage.xaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MultiInject/MainPage.xaml.cs b/MultiInject/MainPage.xaml.cs
new file mode 100644
index 0000000..5d599d0
--- /dev/null
+++ b/MultiInject/MainPage.xaml.cs
@@ -0,0 +1,198 @@
+using System;
+using System.Diagnostics;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices;
+using Microsoft.Maui.Controls;
+using Microsoft.Maui.Storage;
+
+// i fucking hate maui
+// all code associated with MacOS goes untested, since i do not own a Mac / Mac KVM
+namespace MultiInject
+{
+ public partial class MainPage : ContentPage
+ {
+ private Process _selectedProcess;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ LoadProcesses();
+ }
+
+ private void LoadProcesses()
+ {
+ var processes = Process.GetProcesses()
+ .OrderBy(p => p.ProcessName)
+ .ToList();
+ ProcessListView.ItemsSource = processes;
+ }
+
+ private void OnSearchTextChanged(object sender, TextChangedEventArgs e)
+ {
+ var searchText = e.NewTextValue.ToLower();
+ var filteredProcesses = Process.GetProcesses()
+ .Where(p => p.ProcessName.ToLower().Contains(searchText))
+ .OrderBy(p => p.ProcessName)
+ .ToList();
+ ProcessListView.ItemsSource = filteredProcesses;
+ }
+
+ private void OnProcessSelected(object sender, SelectedItemChangedEventArgs e)
+ {
+ _selectedProcess = e.SelectedItem as Process;
+ AttachButton.IsEnabled = _selectedProcess != null;
+ }
+
+ private async void OnAttachButtonClicked(object sender, EventArgs e)
+ {
+ if (_selectedProcess == null) return;
+
+ var filePickerOptions = new PickOptions
+ {
+ PickerTitle = "Select a library to attach",
+ FileTypes = new FilePickerFileType(new Dictionary>
+ {
+ { DevicePlatform.WinUI, new[] { ".dll" } },
+ { DevicePlatform.macOS, new[] { ".dylib" } },
+ { DevicePlatform.Create("Linux"), new[] { ".so" } }
+ })
+ };
+
+ var result = await FilePicker.Default.PickAsync(filePickerOptions);
+ if (result == null) return;
+
+ var libPath = result.FullPath;
+
+ if (OperatingSystem.IsWindows())
+ {
+ AttachDllWindows(libPath);
+ }
+ else if (OperatingSystem.IsMacOS())
+ {
+ AttachLibraryUnix(libPath);
+ }
+ else if (OperatingSystem.IsLinux())
+ {
+ await DisplayAlert("Linux Detected", "Linux detected; attempting library load.", "OK");
+ AttachLibraryUnix(libPath);
+ }
+ else
+ {
+ await DisplayAlert("Unsupported OS", "Unsupported operating system for library attachment.", "OK");
+ }
+ }
+
+ private void AttachDllWindows(string dllPath)
+ {
+ try
+ {
+ var processHandle = OpenProcess(0x001F0FFF, false, _selectedProcess.Id);
+ if (processHandle == IntPtr.Zero)
+ {
+ DisplayAlert("Error", "Failed to open process.", "OK");
+ return;
+ }
+
+ IntPtr loadLibraryAddr = GetProcAddress(GetModuleHandle("kernel32.dll"), "LoadLibraryA");
+ IntPtr allocMemAddress = VirtualAllocEx(processHandle, IntPtr.Zero, (uint)((dllPath.Length + 1) * Marshal.SizeOf(typeof(char))),
+ 0x1000 | 0x2000, 0x04);
+
+ if (allocMemAddress == IntPtr.Zero)
+ {
+ DisplayAlert("Error", "Failed to allocate memory in target process.", "OK");
+ return;
+ }
+
+ WriteProcessMemory(processHandle, allocMemAddress, System.Text.Encoding.Default.GetBytes(dllPath), (uint)((dllPath.Length + 1) * Marshal.SizeOf(typeof(char))), out _);
+ CreateRemoteThread(processHandle, IntPtr.Zero, 0, loadLibraryAddr, allocMemAddress, 0, IntPtr.Zero);
+
+ DisplayAlert("Success", "DLL attached successfully.", "OK");
+ }
+ catch (Exception ex)
+ {
+ DisplayAlert("Error", $"Failed to attach DLL: {ex.Message}", "OK");
+ }
+ }
+
+ private async void AttachLibraryUnix(string libraryPath)
+ {
+ try
+ {
+ IntPtr libHandle = dlopen(libraryPath, RTLD_NOW);
+ if (libHandle == IntPtr.Zero)
+ {
+ var error = Marshal.PtrToStringAnsi(dlerror());
+ await DisplayAlert("Error", $"Failed to load library: {error}", "OK");
+ return;
+ }
+
+ await DisplayAlert("Success", "Library loaded successfully on Unix.", "OK");
+
+ // idk if this would work, but i guess it can?
+ // i do not own a Mac so i cannot really test this.
+ IntPtr exampleFunctionPtr = dlsym(libHandle, "exampleFunction");
+ if (exampleFunctionPtr == IntPtr.Zero)
+ {
+ await DisplayAlert("Error", "Failed to retrieve function 'exampleFunction'.", "OK");
+ }
+ else
+ {
+ await DisplayAlert("Success", "Function pointer retrieved successfully.", "OK");
+ }
+
+ dlclose(libHandle);
+ }
+ catch (Exception ex)
+ {
+ await DisplayAlert("Error", $"Failed to attach library: {ex.Message}", "OK");
+ }
+ }
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern IntPtr OpenProcess(uint processAccess, bool bInheritHandle, int processId);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern IntPtr VirtualAllocEx(IntPtr hProcess, IntPtr lpAddress, uint dwSize, uint flAllocationType, uint flProtect);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, uint nSize, out int lpNumberOfBytesWritten);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern IntPtr GetProcAddress(IntPtr hModule, string lpProcName);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern IntPtr GetModuleHandle(string lpModuleName);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ private static extern IntPtr CreateRemoteThread(IntPtr hProcess, IntPtr lpThreadAttributes, uint dwStackSize, IntPtr lpStartAddress, IntPtr lpParameter, uint dwCreationFlags, IntPtr lpThreadId);
+
+ private const int RTLD_NOW = 2;
+
+#if WINDOWS
+ [DllImport("libdl.so")]
+ private static extern IntPtr dlopen(string filename, int flags);
+
+ [DllImport("libdl.so")]
+ private static extern IntPtr dlsym(IntPtr handle, string symbol);
+
+ [DllImport("libdl.so")]
+ private static extern int dlclose(IntPtr handle);
+
+ [DllImport("libdl.so")]
+ private static extern IntPtr dlerror();
+#else
+ [DllImport("libSystem.B.dylib", EntryPoint = "dlopen")]
+ private static extern IntPtr dlopen(string filename, int flags);
+
+ [DllImport("libSystem.B.dylib", EntryPoint = "dlsym")]
+ private static extern IntPtr dlsym(IntPtr handle, string symbol);
+
+ [DllImport("libSystem.B.dylib", EntryPoint = "dlclose")]
+ private static extern int dlclose(IntPtr handle);
+
+ [DllImport("libSystem.B.dylib", EntryPoint = "dlerror")]
+ private static extern IntPtr dlerror();
+#endif
+ }
+}
\ No newline at end of file
diff --git a/MultiInject/MauiProgram.cs b/MultiInject/MauiProgram.cs
new file mode 100644
index 0000000..20e4de1
--- /dev/null
+++ b/MultiInject/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace MultiInject
+{
+ 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");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/MultiInject/MultiInject.csproj b/MultiInject/MultiInject.csproj
new file mode 100644
index 0000000..0ba775a
--- /dev/null
+++ b/MultiInject/MultiInject.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ MultiInject
+ true
+ true
+ enable
+ enable
+
+
+ MultiInject
+
+
+ com.companyname.multiinject
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MultiInject/Platforms/Android/AndroidManifest.xml b/MultiInject/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MultiInject/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MultiInject/Platforms/Android/MainActivity.cs b/MultiInject/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..22d2568
--- /dev/null
+++ b/MultiInject/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace MultiInject
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/MultiInject/Platforms/Android/MainApplication.cs b/MultiInject/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..1e140e9
--- /dev/null
+++ b/MultiInject/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace MultiInject
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MultiInject/Platforms/Android/Resources/values/colors.xml b/MultiInject/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MultiInject/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MultiInject/Platforms/MacCatalyst/AppDelegate.cs b/MultiInject/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..a384c06
--- /dev/null
+++ b/MultiInject/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MultiInject
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MultiInject/Platforms/MacCatalyst/Entitlements.plist b/MultiInject/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/MultiInject/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/MultiInject/Platforms/MacCatalyst/Info.plist b/MultiInject/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/MultiInject/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/MultiInject/Platforms/MacCatalyst/Program.cs b/MultiInject/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..e8dd655
--- /dev/null
+++ b/MultiInject/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MultiInject
+{
+ 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/MultiInject/Platforms/Tizen/Main.cs b/MultiInject/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..cc2ef65
--- /dev/null
+++ b/MultiInject/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace MultiInject
+{
+ 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/MultiInject/Platforms/Tizen/tizen-manifest.xml b/MultiInject/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..345995e
--- /dev/null
+++ b/MultiInject/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/MultiInject/Platforms/Windows/App.xaml b/MultiInject/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..c04c977
--- /dev/null
+++ b/MultiInject/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MultiInject/Platforms/Windows/App.xaml.cs b/MultiInject/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..4996431
--- /dev/null
+++ b/MultiInject/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+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 MultiInject.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/MultiInject/Platforms/Windows/Package.appxmanifest b/MultiInject/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..e6ad04f
--- /dev/null
+++ b/MultiInject/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MultiInject/Platforms/Windows/app.manifest b/MultiInject/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..3a5d425
--- /dev/null
+++ b/MultiInject/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MultiInject/Platforms/iOS/AppDelegate.cs b/MultiInject/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..a384c06
--- /dev/null
+++ b/MultiInject/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MultiInject
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MultiInject/Platforms/iOS/Info.plist b/MultiInject/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MultiInject/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/MultiInject/Platforms/iOS/Program.cs b/MultiInject/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..e8dd655
--- /dev/null
+++ b/MultiInject/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MultiInject
+{
+ 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/MultiInject/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/MultiInject/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..24ab3b4
--- /dev/null
+++ b/MultiInject/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,51 @@
+
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPITypeReasons
+
+ E174.1
+
+
+
+
+
+
diff --git a/MultiInject/Properties/launchSettings.json b/MultiInject/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MultiInject/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MultiInject/Resources/AppIcon/appicon.svg b/MultiInject/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MultiInject/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MultiInject/Resources/AppIcon/appiconfg.svg b/MultiInject/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MultiInject/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MultiInject/Resources/Fonts/OpenSans-Regular.ttf b/MultiInject/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..ba487fe
Binary files /dev/null and b/MultiInject/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MultiInject/Resources/Fonts/OpenSans-Semibold.ttf b/MultiInject/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..8fe2c59
Binary files /dev/null and b/MultiInject/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MultiInject/Resources/Images/dotnet_bot.png b/MultiInject/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/MultiInject/Resources/Images/dotnet_bot.png differ
diff --git a/MultiInject/Resources/Raw/AboutAssets.txt b/MultiInject/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..89dc758
--- /dev/null
+++ b/MultiInject/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 your 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/MultiInject/Resources/Splash/splash.svg b/MultiInject/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MultiInject/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MultiInject/Resources/Styles/Colors.xaml b/MultiInject/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/MultiInject/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MultiInject/Resources/Styles/Styles.xaml b/MultiInject/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..6641e3a
--- /dev/null
+++ b/MultiInject/Resources/Styles/Styles.xaml
@@ -0,0 +1,427 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+