Compare commits

...

4 Commits

Author SHA1 Message Date
e9ef326ced 프로젝트 위치 이동 2025-03-14 00:43:34 +09:00
78f6722742 프로젝트 추가 2025-03-13 22:56:10 +09:00
8af5361ded editorconfig 추가 2025-03-13 22:56:10 +09:00
fd74267b88 gitignore 추가 2025-03-13 22:56:10 +09:00
4 changed files with 19 additions and 0 deletions

5
.editorconfig Normal file
View File

@@ -0,0 +1,5 @@
root = true
[*]
end_of_line = lf
charset = utf-8-bom

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
bin/
obj/
.vs/

View File

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

View File

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