diff --git a/CSMazeConfigEditor/App.xaml b/CSMazeConfigEditor/App.xaml new file mode 100644 index 0000000..1da7660 --- /dev/null +++ b/CSMazeConfigEditor/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/CSMazeConfigEditor/App.xaml.cs b/CSMazeConfigEditor/App.xaml.cs new file mode 100644 index 0000000..948d631 --- /dev/null +++ b/CSMazeConfigEditor/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace CSMaze.ConfigEditor +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/CSMazeConfigEditor/AssemblyInfo.cs b/CSMazeConfigEditor/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/CSMazeConfigEditor/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/CSMazeConfigEditor/CSMazeConfigEditor.csproj b/CSMazeConfigEditor/CSMazeConfigEditor.csproj index 74abf5c..c0322d3 100644 --- a/CSMazeConfigEditor/CSMazeConfigEditor.csproj +++ b/CSMazeConfigEditor/CSMazeConfigEditor.csproj @@ -1,10 +1,14 @@ - + - Exe - net6.0 - enable + WinExe + net6.0-windows enable + true + + + + diff --git a/CSMazeConfigEditor/MainWindow.xaml b/CSMazeConfigEditor/MainWindow.xaml new file mode 100644 index 0000000..a8d849b --- /dev/null +++ b/CSMazeConfigEditor/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/CSMazeConfigEditor/MainWindow.xaml.cs b/CSMazeConfigEditor/MainWindow.xaml.cs new file mode 100644 index 0000000..a439bb4 --- /dev/null +++ b/CSMazeConfigEditor/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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 CSMaze.ConfigEditor +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/CSMazeConfigEditor/Program.cs b/CSMazeConfigEditor/Program.cs index 0fe5785..f8a7944 100644 --- a/CSMazeConfigEditor/Program.cs +++ b/CSMazeConfigEditor/Program.cs @@ -1,4 +1,4 @@ -namespace CSMazeConfigEditor +namespace CSMaze.ConfigEditor { internal class Program { diff --git a/CSMazeDesigner/App.xaml b/CSMazeDesigner/App.xaml new file mode 100644 index 0000000..7f91287 --- /dev/null +++ b/CSMazeDesigner/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/CSMazeDesigner/App.xaml.cs b/CSMazeDesigner/App.xaml.cs new file mode 100644 index 0000000..e5addcb --- /dev/null +++ b/CSMazeDesigner/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace CSMaze.Designer +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/CSMazeDesigner/AssemblyInfo.cs b/CSMazeDesigner/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/CSMazeDesigner/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/CSMazeDesigner/CSMazeDesigner.csproj b/CSMazeDesigner/CSMazeDesigner.csproj index 74abf5c..c0322d3 100644 --- a/CSMazeDesigner/CSMazeDesigner.csproj +++ b/CSMazeDesigner/CSMazeDesigner.csproj @@ -1,10 +1,14 @@ - + - Exe - net6.0 - enable + WinExe + net6.0-windows enable + true + + + + diff --git a/CSMazeDesigner/MainWindow.xaml b/CSMazeDesigner/MainWindow.xaml new file mode 100644 index 0000000..03bf392 --- /dev/null +++ b/CSMazeDesigner/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/CSMazeDesigner/MainWindow.xaml.cs b/CSMazeDesigner/MainWindow.xaml.cs new file mode 100644 index 0000000..223ff5b --- /dev/null +++ b/CSMazeDesigner/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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 CSMaze.Designer +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/CSMazeDesigner/Program.cs b/CSMazeDesigner/Program.cs index 3cd5bb6..d56a364 100644 --- a/CSMazeDesigner/Program.cs +++ b/CSMazeDesigner/Program.cs @@ -1,4 +1,4 @@ -namespace CSMazeDesigner +namespace CSMaze.Designer { internal class Program {