diff --git a/Raylib-cs.Tests/Raylib-cs.Tests.csproj b/Raylib-cs.Tests/Raylib-cs.Tests.csproj new file mode 100644 index 0000000..2dba253 --- /dev/null +++ b/Raylib-cs.Tests/Raylib-cs.Tests.csproj @@ -0,0 +1,25 @@ + + + Exe + net47;netcoreapp3.1 + x64 + + + + ../Logo/raylib-cs.ico + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Raylib-cs.sln b/Raylib-cs.sln index 737283e..2efd3e9 100644 --- a/Raylib-cs.sln +++ b/Raylib-cs.sln @@ -5,7 +5,7 @@ VisualStudioVersion = 15.0.27703.2035 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raylib-cs", "Raylib-cs\Raylib-cs.csproj", "{B02C431E-271A-432E-BA5C-EE3B68DBF585}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{523DEE6A-20CD-47AB-94A6-8D3C3CF9ADAD}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Raylib-cs.Tests", "Raylib-cs.Tests\Raylib-cs.Tests.csproj", "{523DEE6A-20CD-47AB-94A6-8D3C3CF9ADAD}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Tests/Program.cs b/Tests/Program.cs deleted file mode 100644 index 204dce9..0000000 --- a/Tests/Program.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Raylib_cs; -using static Raylib_cs.Raylib; - -namespace Tests -{ - class Program - { - static void Main(string[] args) - { - // Initialization - //-------------------------------------------------------------------------------------- - const int screenWidth = 800; - const int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(Color.RAYWHITE); - - DrawText("Congrats! You created your first window!", 190, 200, 20, Color.LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return; - } - } -} diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj deleted file mode 100644 index e641f0e..0000000 --- a/Tests/Tests.csproj +++ /dev/null @@ -1,22 +0,0 @@ - - - Exe - net47;netcoreapp3.1 - x64 - - - - ../Logo/raylib-cs.ico - true - - - - - - - - - - - - diff --git a/Tests/nuget.config b/Tests/nuget.config deleted file mode 100644 index 98f4b8c..0000000 --- a/Tests/nuget.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - -