diff --git a/Hochbaustatistik.Testing/Hochbaustatistik.Testing.csproj b/Hochbaustatistik.Testing/Hochbaustatistik.Testing.csproj new file mode 100644 index 0000000..1502b1f --- /dev/null +++ b/Hochbaustatistik.Testing/Hochbaustatistik.Testing.csproj @@ -0,0 +1,22 @@ + + + + netcoreapp3.1 + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git a/Hochbaustatistik.Testing/UnitTest1.cs b/Hochbaustatistik.Testing/UnitTest1.cs new file mode 100644 index 0000000..612f720 --- /dev/null +++ b/Hochbaustatistik.Testing/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Xunit; + +namespace Hochbaustatistik.Testing +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + + } + } +} diff --git a/Hochbaustatistik.sln b/Hochbaustatistik.sln new file mode 100644 index 0000000..a288e9b --- /dev/null +++ b/Hochbaustatistik.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32819.101 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hochbaustatistik", "Hochbaustatistik\Hochbaustatistik.csproj", "{76A60AF1-41A8-4E94-8FCF-598D447ABD67}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {76A60AF1-41A8-4E94-8FCF-598D447ABD67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76A60AF1-41A8-4E94-8FCF-598D447ABD67}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76A60AF1-41A8-4E94-8FCF-598D447ABD67}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76A60AF1-41A8-4E94-8FCF-598D447ABD67}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0F1AC96B-EB42-4896-A738-93CA0F1EAA55} + EndGlobalSection +EndGlobal diff --git a/Hochbaustatistik/Data/DataOperations.cs b/Hochbaustatistik/Data/DataOperations.cs new file mode 100644 index 0000000..f8f87ba --- /dev/null +++ b/Hochbaustatistik/Data/DataOperations.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Hochbaustatistik.Data +{ + internal class DataOperations + { + } +} diff --git a/Hochbaustatistik/Hochbaustatistik.csproj b/Hochbaustatistik/Hochbaustatistik.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/Hochbaustatistik/Hochbaustatistik.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/Hochbaustatistik/Program.cs b/Hochbaustatistik/Program.cs new file mode 100644 index 0000000..61fbf90 --- /dev/null +++ b/Hochbaustatistik/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace Hochbaustatistik +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}