From 4811837ca6b45041b50c07c75d8c574332c48ac1 Mon Sep 17 00:00:00 2001 From: Kylnic28 Date: Fri, 4 Oct 2024 18:12:02 +0200 Subject: [PATCH] feat: Initialize project --- Bahla.Backend.sln | 13 +++++++++++++ src/Bahla.Tests/Bahla.Tests.csproj | 24 ++++++++++++++++++++++++ src/Bahla.Tests/UnitTest1.cs | 16 ++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 Bahla.Backend.sln create mode 100644 src/Bahla.Tests/Bahla.Tests.csproj create mode 100644 src/Bahla.Tests/UnitTest1.cs diff --git a/Bahla.Backend.sln b/Bahla.Backend.sln new file mode 100644 index 0000000..9061b29 --- /dev/null +++ b/Bahla.Backend.sln @@ -0,0 +1,13 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35303.130 +MinimumVisualStudioVersion = 10.0.40219.1 +Global + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5C7A3D1C-3E2B-4F1A-A234-B50030F389D6} + EndGlobalSection +EndGlobal diff --git a/src/Bahla.Tests/Bahla.Tests.csproj b/src/Bahla.Tests/Bahla.Tests.csproj new file mode 100644 index 0000000..8b5797e --- /dev/null +++ b/src/Bahla.Tests/Bahla.Tests.csproj @@ -0,0 +1,24 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + + diff --git a/src/Bahla.Tests/UnitTest1.cs b/src/Bahla.Tests/UnitTest1.cs new file mode 100644 index 0000000..9d13716 --- /dev/null +++ b/src/Bahla.Tests/UnitTest1.cs @@ -0,0 +1,16 @@ +namespace Bahla.Tests +{ + public class Tests + { + [SetUp] + public void Setup() + { + } + + [Test] + public void Test1() + { + Assert.Pass(); + } + } +} \ No newline at end of file