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!"); + } + } +}