From 9048649396edd2ff51f960f18d1a59f7c374c2bb Mon Sep 17 00:00:00 2001 From: Chenx221 Date: Sun, 28 Jul 2024 09:48:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ArtemisFgTools.sln | 25 +++++++++++++++++++++++++ ArtemisFgTools/ArtemisFgTools.csproj | 10 ++++++++++ ArtemisFgTools/Program.cs | 10 ++++++++++ 3 files changed, 45 insertions(+) create mode 100644 ArtemisFgTools.sln create mode 100644 ArtemisFgTools/ArtemisFgTools.csproj create mode 100644 ArtemisFgTools/Program.cs diff --git a/ArtemisFgTools.sln b/ArtemisFgTools.sln new file mode 100644 index 0000000..4f51243 --- /dev/null +++ b/ArtemisFgTools.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35027.167 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArtemisFgTools", "ArtemisFgTools\ArtemisFgTools.csproj", "{6AA15652-41C4-4903-9457-7178E43AEDCC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6AA15652-41C4-4903-9457-7178E43AEDCC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6AA15652-41C4-4903-9457-7178E43AEDCC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6AA15652-41C4-4903-9457-7178E43AEDCC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6AA15652-41C4-4903-9457-7178E43AEDCC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6220368B-7703-4003-93C9-C25358C21661} + EndGlobalSection +EndGlobal diff --git a/ArtemisFgTools/ArtemisFgTools.csproj b/ArtemisFgTools/ArtemisFgTools.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/ArtemisFgTools/ArtemisFgTools.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/ArtemisFgTools/Program.cs b/ArtemisFgTools/Program.cs new file mode 100644 index 0000000..7d326ae --- /dev/null +++ b/ArtemisFgTools/Program.cs @@ -0,0 +1,10 @@ +namespace ArtemisFgTools +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } + } +}