feat: update gitingore

This commit is contained in:
2023-11-02 16:27:02 +01:00
commit 6e27660234
12 changed files with 609 additions and 0 deletions

View File

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

6
Iteration/Iterations.cs Normal file
View File

@ -0,0 +1,6 @@
namespace Iteration;
public class Iterations
{
}

3
Iteration/Program.cs Normal file
View File

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