commit a546285ae1e7baedc3a314d080fe2a6f521661f3 Author: Xevion Date: Tue Nov 26 14:20:18 2024 -0600 project init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7366976 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.idea +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ diff --git a/factorio-achievements-fixer.sln b/factorio-achievements-fixer.sln new file mode 100644 index 0000000..4b1b87b --- /dev/null +++ b/factorio-achievements-fixer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34728.123 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "factorio-achievements-fixer", "factorio-achievements-fixer\factorio-achievements-fixer.csproj", "{52CBAB79-17D2-4BBF-98B2-4A19864C7FAF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {52CBAB79-17D2-4BBF-98B2-4A19864C7FAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52CBAB79-17D2-4BBF-98B2-4A19864C7FAF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52CBAB79-17D2-4BBF-98B2-4A19864C7FAF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52CBAB79-17D2-4BBF-98B2-4A19864C7FAF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {970EF005-D589-4FEA-8466-86C65F557263} + EndGlobalSection +EndGlobal diff --git a/factorio-achievements-fixer/App.xaml b/factorio-achievements-fixer/App.xaml new file mode 100644 index 0000000..d0500fe --- /dev/null +++ b/factorio-achievements-fixer/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/factorio-achievements-fixer/App.xaml.cs b/factorio-achievements-fixer/App.xaml.cs new file mode 100644 index 0000000..1163219 --- /dev/null +++ b/factorio-achievements-fixer/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace factorio_achievements_fixer; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/factorio-achievements-fixer/AssemblyInfo.cs b/factorio-achievements-fixer/AssemblyInfo.cs new file mode 100644 index 0000000..5d08a02 --- /dev/null +++ b/factorio-achievements-fixer/AssemblyInfo.cs @@ -0,0 +1,10 @@ +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) +)] \ No newline at end of file diff --git a/factorio-achievements-fixer/MainWindow.xaml b/factorio-achievements-fixer/MainWindow.xaml new file mode 100644 index 0000000..ab57679 --- /dev/null +++ b/factorio-achievements-fixer/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/factorio-achievements-fixer/MainWindow.xaml.cs b/factorio-achievements-fixer/MainWindow.xaml.cs new file mode 100644 index 0000000..24a94d9 --- /dev/null +++ b/factorio-achievements-fixer/MainWindow.xaml.cs @@ -0,0 +1,23 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace factorio_achievements_fixer; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/factorio-achievements-fixer/factorio-achievements-fixer.csproj b/factorio-achievements-fixer/factorio-achievements-fixer.csproj new file mode 100644 index 0000000..ae6ebcc --- /dev/null +++ b/factorio-achievements-fixer/factorio-achievements-fixer.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + factorio_achievements_fixer + enable + enable + true + + +