라이브러리 프로젝트 추가

This commit is contained in:
2025-09-04 23:01:47 +09:00
parent a7d4720918
commit 697fa36e11
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace BrokerDogLib;
public static class BrokerDogLib
{
public static string SayHello()
{
return "Hello";
}
public static string SayWorld()
{
return "World";
}
}

View File

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