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"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <ItemGroup>
<OutputType>Exe</OutputType> <Compile Include="..\Libraries\RefreshCS\RefreshCS.cs" />
<TargetFramework>net8.0</TargetFramework> <Compile Include="..\Libraries\SDL2CS\src\SDL2.cs" />
<ImplicitUsings>enable</ImplicitUsings> </ItemGroup>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot> <PropertyGroup>
<InvariantGlobalization>true</InvariantGlobalization> <OutputType>Exe</OutputType>
</PropertyGroup> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
</Project> </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!");
}
} }
} }

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160 VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nerfed.Runtime", "Nerfed.Runtime\Nerfed.Runtime.csproj", "{98E09BAF-587F-4238-89BD-7693C036C233}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Nerfed.Runtime", "Nerfed.Runtime\Nerfed.Runtime.csproj", "{98E09BAF-587F-4238-89BD-7693C036C233}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution