diff --git a/osrs-toolbox.sln b/osrs-toolbox.sln new file mode 100644 index 0000000..0eb8f21 --- /dev/null +++ b/osrs-toolbox.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34511.84 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "osrs-toolbox", "osrs-toolbox\osrs-toolbox.csproj", "{0AE3D94A-F815-4986-9881-DC1CF3D97AD2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0AE3D94A-F815-4986-9881-DC1CF3D97AD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0AE3D94A-F815-4986-9881-DC1CF3D97AD2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0AE3D94A-F815-4986-9881-DC1CF3D97AD2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0AE3D94A-F815-4986-9881-DC1CF3D97AD2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F7A02BBF-4456-4CA7-A3A9-D52332E5E5F4} + EndGlobalSection +EndGlobal diff --git a/osrs-toolbox/App.xaml b/osrs-toolbox/App.xaml new file mode 100644 index 0000000..44b012d --- /dev/null +++ b/osrs-toolbox/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/osrs-toolbox/App.xaml.cs b/osrs-toolbox/App.xaml.cs new file mode 100644 index 0000000..440d26d --- /dev/null +++ b/osrs-toolbox/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace osrs_toolbox +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/osrs-toolbox/AssemblyInfo.cs b/osrs-toolbox/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/osrs-toolbox/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) +)] diff --git a/osrs-toolbox/MainWindow.xaml b/osrs-toolbox/MainWindow.xaml new file mode 100644 index 0000000..4396e4d --- /dev/null +++ b/osrs-toolbox/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/osrs-toolbox/MainWindow.xaml.cs b/osrs-toolbox/MainWindow.xaml.cs new file mode 100644 index 0000000..eae1a06 --- /dev/null +++ b/osrs-toolbox/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +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 osrs_toolbox +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/osrs-toolbox/osrs-toolbox.csproj b/osrs-toolbox/osrs-toolbox.csproj new file mode 100644 index 0000000..f3c12ba --- /dev/null +++ b/osrs-toolbox/osrs-toolbox.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + osrs_toolbox + enable + enable + true + + +