Compare commits

...

4 Commits

Author SHA1 Message Date
0b96e6daa9 프로젝트 추가 2025-03-13 22:54:38 +09:00
af674e649e ㅁㄴㅇ 2025-03-13 22:54:30 +09:00
3ccf3bbacc editorconfig 추가 2025-03-13 22:52:47 +09:00
7395dbeef2 gitignore 추가 2025-03-13 22:52:14 +09:00
4 changed files with 20 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/

10
ClassicRaytracing.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
src/Program.cs Normal file
View File

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