콘솔 프로젝트 추가

This commit is contained in:
2025-10-15 01:59:11 +09:00
parent c03144a769
commit 7704e68b12
3 changed files with 32 additions and 0 deletions

View File

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

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>