콘솔 프로젝트 추가

This commit is contained in:
2025-09-04 22:38:54 +09:00
parent 52731f4b13
commit 7c3e74220f
2 changed files with 12 additions and 0 deletions

10
BrokerDog.csproj Normal file
View File

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

2
BrokerDog/Program.cs Normal file
View File

@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");