From a1d73860822234c0c52cbae5f300df3af5fc5f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerard=20Gasc=C3=B3n?= Date: Sun, 27 Apr 2025 14:16:25 +0200 Subject: [PATCH] init --- .gitignore | 6 ++++++ Project.sln | 22 ++++++++++++++++++++++ Project/Program.cs | 7 +++++++ Project/Project.csproj | 10 ++++++++++ Tests/Tests.csproj | 29 +++++++++++++++++++++++++++++ Tests/Usings.cs | 1 + global.json | 7 +++++++ 7 files changed, 82 insertions(+) create mode 100644 .gitignore create mode 100644 Project.sln create mode 100644 Project/Program.cs create mode 100644 Project/Project.csproj create mode 100644 Tests/Tests.csproj create mode 100644 Tests/Usings.cs create mode 100644 global.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91953df --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +.idea \ No newline at end of file diff --git a/Project.sln b/Project.sln new file mode 100644 index 0000000..1875be5 --- /dev/null +++ b/Project.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Project", "Project\Project.csproj", "{55F81521-9AF5-431A-8347-AA7D6349219A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{32BB29F6-9636-4FCB-A595-638599ACBC0C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {55F81521-9AF5-431A-8347-AA7D6349219A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {55F81521-9AF5-431A-8347-AA7D6349219A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {55F81521-9AF5-431A-8347-AA7D6349219A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {55F81521-9AF5-431A-8347-AA7D6349219A}.Release|Any CPU.Build.0 = Release|Any CPU + {32BB29F6-9636-4FCB-A595-638599ACBC0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {32BB29F6-9636-4FCB-A595-638599ACBC0C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {32BB29F6-9636-4FCB-A595-638599ACBC0C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {32BB29F6-9636-4FCB-A595-638599ACBC0C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Project/Program.cs b/Project/Program.cs new file mode 100644 index 0000000..e108dea --- /dev/null +++ b/Project/Program.cs @@ -0,0 +1,7 @@ +namespace Project; + +class Program { + static void Main(string[] args) { + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file diff --git a/Project/Project.csproj b/Project/Project.csproj new file mode 100644 index 0000000..b9de063 --- /dev/null +++ b/Project/Project.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj new file mode 100644 index 0000000..f89588d --- /dev/null +++ b/Tests/Tests.csproj @@ -0,0 +1,29 @@ + + + + net6.0 + enable + enable + + false + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + diff --git a/Tests/Usings.cs b/Tests/Usings.cs new file mode 100644 index 0000000..cefced4 --- /dev/null +++ b/Tests/Usings.cs @@ -0,0 +1 @@ +global using NUnit.Framework; \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..1bcf6c0 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "6.0.0", + "rollForward": "latestMinor", + "allowPrerelease": false + } +} \ No newline at end of file