From af7a20c8d52c872b880183a5f291e3d4374ccfb8 Mon Sep 17 00:00:00 2001 From: morpha Date: Mon, 3 Apr 2023 21:41:56 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GiteaTest.sln | 25 +++++++++++++++++++++++++ GiteaTest/GiteaTest.csproj | 10 ++++++++++ GiteaTest/Program.cs | 10 ++++++++++ 3 files changed, 45 insertions(+) create mode 100644 GiteaTest.sln create mode 100644 GiteaTest/GiteaTest.csproj create mode 100644 GiteaTest/Program.cs diff --git a/GiteaTest.sln b/GiteaTest.sln new file mode 100644 index 0000000..46b6f48 --- /dev/null +++ b/GiteaTest.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33516.290 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GiteaTest", "GiteaTest\GiteaTest.csproj", "{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A0722848-914F-4A15-AAF5-60A2E52A033D} + EndGlobalSection +EndGlobal diff --git a/GiteaTest/GiteaTest.csproj b/GiteaTest/GiteaTest.csproj new file mode 100644 index 0000000..74abf5c --- /dev/null +++ b/GiteaTest/GiteaTest.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/GiteaTest/Program.cs b/GiteaTest/Program.cs new file mode 100644 index 0000000..773fb8a --- /dev/null +++ b/GiteaTest/Program.cs @@ -0,0 +1,10 @@ +namespace GiteaTest +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } + } +} \ No newline at end of file