diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 1cbe923..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# Visual Studio
-.vs/
-*.user
-*.suo
-*.userosscache
-*.VC.db
-
-# Build output
-bin/
-obj/
-
-# Rider
-.idea/
-
-# NuGet
-packages/
-
-# Resharper
-_ReSharper*/
-
-# OS files
-Thumbs.db
-.DS_Store
diff --git a/App.xaml b/App.xaml
deleted file mode 100644
index 09770ed..0000000
--- a/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/App.xaml.cs b/App.xaml.cs
deleted file mode 100644
index bdaab89..0000000
--- a/App.xaml.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System.Configuration;
-using System.Data;
-using System.Windows;
-
-namespace MossyUpdater
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-
-}
diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs
deleted file mode 100644
index 372e037..0000000
--- a/AssemblyInfo.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Windows;
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
diff --git a/MainWindow.xaml b/MainWindow.xaml
deleted file mode 100644
index 3d84671..0000000
--- a/MainWindow.xaml
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
deleted file mode 100644
index 07e2cd3..0000000
--- a/MainWindow.xaml.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-using System;
-using System.IO;
-using System.Net.Http;
-using System.Threading.Tasks;
-using System.Windows;
-using Ookii.Dialogs.Wpf; // ← add this
-
-namespace MossyUpdater
-{
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
-
- private void Browse_Click(object sender, RoutedEventArgs e)
- {
- var dlg = new VistaFolderBrowserDialog
- {
- Description = "Select a destination folder",
- UseDescriptionForTitle = true
- };
-
- // ShowDialog returns true if the user clicked OK
- if (dlg.ShowDialog() == true)
- FolderTextBox.Text = dlg.SelectedPath;
- }
-
- private async void Download_Click(object sender, RoutedEventArgs e)
- {
- string url = UrlTextBox.Text.Trim();
- string folder = FolderTextBox.Text.Trim();
- string filename = FilenameTextBox.Text.Trim();
-
- if (string.IsNullOrEmpty(url)
- || string.IsNullOrEmpty(folder)
- || string.IsNullOrEmpty(filename))
- {
- StatusTextBlock.Text = "Please fill in all fields.";
- StatusTextBlock.Foreground = System.Windows.Media.Brushes.Red;
- return;
- }
-
- string fullPath = Path.Combine(folder, filename);
-
- try
- {
- using var client = new HttpClient();
- var data = await client.GetByteArrayAsync(url);
- await File.WriteAllBytesAsync(fullPath, data);
-
- UnblockFile(fullPath);
-
- StatusTextBlock.Text = $"Downloaded and unblocked:\n{fullPath}";
- StatusTextBlock.Foreground = System.Windows.Media.Brushes.Green;
- }
- catch (Exception ex)
- {
- StatusTextBlock.Text = $"Error: {ex.Message}";
- StatusTextBlock.Foreground = System.Windows.Media.Brushes.Red;
- }
- }
-
- private void UnblockFile(string path)
- {
- var zone = path + ":Zone.Identifier";
- if (File.Exists(zone))
- File.Delete(zone);
- }
- }
-}
diff --git a/Mosswart_Mask_Live.png b/Mosswart_Mask_Live.png
deleted file mode 100644
index fcf9039..0000000
Binary files a/Mosswart_Mask_Live.png and /dev/null differ
diff --git a/MossyUpdater.csproj b/MossyUpdater.csproj
deleted file mode 100644
index 9f87710..0000000
--- a/MossyUpdater.csproj
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- WinExe
- net8.0-windows
- enable
- enable
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MossyUpdater.sln b/MossyUpdater.sln
deleted file mode 100644
index 047677b..0000000
--- a/MossyUpdater.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.13.35931.197 d17.13
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MossyUpdater", "MossyUpdater.csproj", "{B110060B-D3A6-44CB-86E1-EF2B65F1209D}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {B110060B-D3A6-44CB-86E1-EF2B65F1209D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B110060B-D3A6-44CB-86E1-EF2B65F1209D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B110060B-D3A6-44CB-86E1-EF2B65F1209D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B110060B-D3A6-44CB-86E1-EF2B65F1209D}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {FF3977FA-6EF6-4AFF-9E27-19038F7BF519}
- EndGlobalSection
-EndGlobal
diff --git a/Properties/PublishProfiles/FolderProfile.pubxml b/Properties/PublishProfiles/FolderProfile.pubxml
deleted file mode 100644
index 6675afe..0000000
--- a/Properties/PublishProfiles/FolderProfile.pubxml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Release
- Any CPU
- bin\Release\net8.0-windows\publish\win-x64\
- FileSystem
- <_TargetId>Folder
- net8.0-windows
- win-x64
- false
- true
- false
-
-
\ No newline at end of file