Compare commits

..

2 Commits

Author SHA1 Message Date
1a450af551 editorconfig 추가 2025-09-04 22:45:48 +09:00
52731f4b13 gitignore 추가 2025-09-04 22:32:01 +09:00
8 changed files with 2 additions and 74 deletions

5
.gitignore vendored
View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,19 +0,0 @@
<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

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