Created solution

This commit is contained in:
max
2024-07-05 12:21:17 +02:00
parent 5e64503765
commit f9a9331584
3 changed files with 47 additions and 0 deletions

View File

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

10
Nerfed.Runtime/Program.cs Normal file
View File

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