Compare commits

..

5 Commits

Author SHA1 Message Date
3f1b164c81 테스트 프로젝트 추가 2025-09-04 23:02:11 +09:00
697fa36e11 라이브러리 프로젝트 추가 2025-09-04 23:02:11 +09:00
a7d4720918 콘솔 프로젝트 추가 2025-09-04 23:02:11 +09:00
3dd056327d editorconfig 추가 2025-09-04 23:02:11 +09:00
9bdfa8504a gitignore 추가 2025-09-04 23:02:11 +09:00
8 changed files with 74 additions and 2 deletions

5
.gitignore vendored
View File

@@ -1,2 +1,3 @@
/bin
/obj
*/bin
*/obj
.vs

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>

7
BrokerDogConsole/main.cs Normal file
View File

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

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>

View File

@@ -0,0 +1,11 @@
namespace BrokerDogTest;
[TestClass]
public sealed class BrokerDogTest
{
[TestMethod]
public void TestMethod()
{
Assert.IsTrue(true);
}
}

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest" Version="3.6.4" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1 @@
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]