Add Refresh2 and SDL2 to project

This commit is contained in:
max
2024-07-05 12:56:37 +02:00
parent e1f0a30724
commit 74ad4e04c8
3 changed files with 22 additions and 17 deletions

View File

@ -1,12 +1,18 @@
<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>
<ItemGroup>
<Compile Include="..\Libraries\RefreshCS\RefreshCS.cs" />
<Compile Include="..\Libraries\SDL2CS\src\SDL2.cs" />
</ItemGroup>
</Project>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
</Project>

View File

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