projectfiles added

This commit is contained in:
Damian Wessels
2024-08-23 10:50:27 +02:00
parent 0899f8d9f8
commit c3889e54ef
2 changed files with 19 additions and 0 deletions

10
FinjaSAN/FinjaSAN.csproj Normal file
View File

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

9
FinjaSAN/Program.cs Normal file
View File

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