Compare commits

...

3 Commits

Author SHA1 Message Date
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 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!");