添加项目文件。

This commit is contained in:
Chenx221 2024-07-28 09:48:31 +08:00
parent acef14afc1
commit 9048649396
3 changed files with 45 additions and 0 deletions

25
ArtemisFgTools.sln Normal file
View File

@ -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

View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

10
ArtemisFgTools/Program.cs Normal file
View File

@ -0,0 +1,10 @@
namespace ArtemisFgTools
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}