From 2c6cd09101940ee55ca2aa4d6a6190ff9a202071 Mon Sep 17 00:00:00 2001 From: Maksym Sadovnychyy Date: Sat, 21 Sep 2024 13:19:58 +0200 Subject: [PATCH] (feature): tests csproj init, add separate license file --- LICENSE.md | 21 +++++++++++++++ .../MaksIT.Results.Tests.csproj | 27 +++++++++++++++++++ MaksIT.Results.Tests/UnitTest1.cs | 8 ++++++ src/MaksIT.Results.sln | 6 +++++ 4 files changed, 62 insertions(+) create mode 100644 LICENSE.md create mode 100644 MaksIT.Results.Tests/MaksIT.Results.Tests.csproj create mode 100644 MaksIT.Results.Tests/UnitTest1.cs diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..7ab9427 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Maksym Sadovnychyy (MAKS-IT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/MaksIT.Results.Tests/MaksIT.Results.Tests.csproj b/MaksIT.Results.Tests/MaksIT.Results.Tests.csproj new file mode 100644 index 0000000..4365cf6 --- /dev/null +++ b/MaksIT.Results.Tests/MaksIT.Results.Tests.csproj @@ -0,0 +1,27 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + + + + + diff --git a/MaksIT.Results.Tests/UnitTest1.cs b/MaksIT.Results.Tests/UnitTest1.cs new file mode 100644 index 0000000..c6ad5a7 --- /dev/null +++ b/MaksIT.Results.Tests/UnitTest1.cs @@ -0,0 +1,8 @@ +namespace MaksIT.Results.Tests { + public class UnitTest1 { + [Fact] + public void Test1() { + + } + } +} \ No newline at end of file diff --git a/src/MaksIT.Results.sln b/src/MaksIT.Results.sln index f87941a..590989b 100644 --- a/src/MaksIT.Results.sln +++ b/src/MaksIT.Results.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 17.9.34902.65 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaksIT.Results", "MaksIT.Results\MaksIT.Results.csproj", "{E947F5FC-8FD9-4F1E-AA5F-29FED95B5A2D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MaksIT.Results.Tests", "..\MaksIT.Results.Tests\MaksIT.Results.Tests.csproj", "{BFD6A824-5A87-4C3A-9F95-32E318E1B683}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {E947F5FC-8FD9-4F1E-AA5F-29FED95B5A2D}.Debug|Any CPU.Build.0 = Debug|Any CPU {E947F5FC-8FD9-4F1E-AA5F-29FED95B5A2D}.Release|Any CPU.ActiveCfg = Release|Any CPU {E947F5FC-8FD9-4F1E-AA5F-29FED95B5A2D}.Release|Any CPU.Build.0 = Release|Any CPU + {BFD6A824-5A87-4C3A-9F95-32E318E1B683}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BFD6A824-5A87-4C3A-9F95-32E318E1B683}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BFD6A824-5A87-4C3A-9F95-32E318E1B683}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BFD6A824-5A87-4C3A-9F95-32E318E1B683}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE