commit 47535950b27e04018ea3741a8cbd002c846a68e0 Author: Damian Wessels Date: Fri Mar 17 14:23:10 2023 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a599aa4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.vs/* +*/obj/* diff --git a/SewerStammGen/App.xaml b/SewerStammGen/App.xaml new file mode 100644 index 0000000..1905fcb --- /dev/null +++ b/SewerStammGen/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/SewerStammGen/App.xaml.cs b/SewerStammGen/App.xaml.cs new file mode 100644 index 0000000..8ae58bb --- /dev/null +++ b/SewerStammGen/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 SewerStammGen +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/SewerStammGen/AssemblyInfo.cs b/SewerStammGen/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/SewerStammGen/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/SewerStammGen/MainWindow.xaml b/SewerStammGen/MainWindow.xaml new file mode 100644 index 0000000..4352748 --- /dev/null +++ b/SewerStammGen/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/SewerStammGen/MainWindow.xaml.cs b/SewerStammGen/MainWindow.xaml.cs new file mode 100644 index 0000000..b7de14d --- /dev/null +++ b/SewerStammGen/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 SewerStammGen +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/SewerStammGen/SewerStammGen.csproj b/SewerStammGen/SewerStammGen.csproj new file mode 100644 index 0000000..d84276c --- /dev/null +++ b/SewerStammGen/SewerStammGen.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net7.0-windows + enable + true + + + diff --git a/SewerStammGen/SewerStammGen.csproj.user b/SewerStammGen/SewerStammGen.csproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/SewerStammGen/SewerStammGen.csproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Shared/Domain/Manhole.cs b/Shared/Domain/Manhole.cs new file mode 100644 index 0000000..2bf8240 --- /dev/null +++ b/Shared/Domain/Manhole.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Shared.Domain +{ + internal class Manhole + { + } +} diff --git a/Shared/Shared.csproj b/Shared/Shared.csproj new file mode 100644 index 0000000..cfadb03 --- /dev/null +++ b/Shared/Shared.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/Stammdatengenerator.sln b/Stammdatengenerator.sln new file mode 100644 index 0000000..80c744b --- /dev/null +++ b/Stammdatengenerator.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33502.453 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SewerStammGen", "SewerStammGen\SewerStammGen.csproj", "{7052AE7B-9E3C-4C04-9756-7488D21512C1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7052AE7B-9E3C-4C04-9756-7488D21512C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7052AE7B-9E3C-4C04-9756-7488D21512C1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7052AE7B-9E3C-4C04-9756-7488D21512C1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7052AE7B-9E3C-4C04-9756-7488D21512C1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A451E938-612E-475E-AAB2-57F2AE833323} + EndGlobalSection +EndGlobal