Initial commit

This commit is contained in:
Elias Stepanik 2022-07-17 19:21:58 +02:00
commit 4bbfcec9c9
47 changed files with 643 additions and 0 deletions

13
.idea/.idea.RaylibTest/.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/projectSettingsUpdater.xml
/modules.xml
/contentModel.xml
/.idea.RaylibTest.iml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

16
RaylibTest.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RaylibTest", "RaylibTest\RaylibTest.csproj", "{B6C484C6-31E8-450C-8B03-255A02FB781B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B6C484C6-31E8-450C-8B03-255A02FB781B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B6C484C6-31E8-450C-8B03-255A02FB781B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B6C484C6-31E8-450C-8B03-255A02FB781B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B6C484C6-31E8-450C-8B03-255A02FB781B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

7
RaylibTest/Collider.cs Normal file
View File

@ -0,0 +1,7 @@
namespace RaylibTest;
public class Collider : Component
{
}

6
RaylibTest/Component.cs Normal file
View File

@ -0,0 +1,6 @@
namespace RaylibTest;
public class Component
{
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

36
RaylibTest/Game.cs Normal file
View File

@ -0,0 +1,36 @@
using System.Numerics;
using Raylib_cs;
namespace RaylibTest;
public class Game : Window
{
public Game(int width, int height, string title, int targetFps) : base(width, height, title, targetFps)
{
}
Vector2 ballPosition = new Vector2(100, 100);
Sphere sphere = new Sphere(new Vector2(0,0), 20, Color.RED);
public override void Start()
{
ballPosition = new Vector2((float) Width / 2, (float) Height / 2);
RegisterGameObject(sphere);
base.Start();
}
public override void Update()
{
base.Update();
if (Raylib.IsKeyDown(KeyboardKey.KEY_RIGHT)) ballPosition.X += 2.0f;
if (Raylib.IsKeyDown(KeyboardKey.KEY_LEFT)) ballPosition.X -= 2.0f;
if (Raylib.IsKeyDown(KeyboardKey.KEY_UP)) ballPosition.Y -= 2.0f;
if (Raylib.IsKeyDown(KeyboardKey.KEY_DOWN)) ballPosition.Y += 2.0f;
Raylib.DrawText("move the ball with arrow keys", 10, 10, 20, Color.DARKGRAY);
sphere.Position = ballPosition;
Console.Clear();
Console.WriteLine(@"BallPisiton: {0}",sphere.Position);
}
}

16
RaylibTest/GameObject.cs Normal file
View File

@ -0,0 +1,16 @@
using System.Numerics;
namespace RaylibTest;
public class GameObject
{
public Vector2 Position;
public GameObject(Vector2 position)
{
Position = position;
}
public virtual void Draw()
{
}
}

13
RaylibTest/Program.cs Normal file
View File

@ -0,0 +1,13 @@
using Raylib_cs;
using RaylibTest;
Game game = new Game(1024, 768, "Raylib Game Template", 60);
game.Start();
while (!Raylib.WindowShouldClose())
{
Raylib.BeginDrawing();
Raylib.ClearBackground(Color.WHITE);
game.Update();
Raylib.EndDrawing();
}

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Raylib-cs" Version="4.0.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Sprites" />
</ItemGroup>
</Project>

22
RaylibTest/Sphere.cs Normal file
View File

@ -0,0 +1,22 @@
using System.Numerics;
using Raylib_cs;
namespace RaylibTest;
public class Sphere : GameObject
{
public float Radius { get; set; }
public Color Color { get; set; }
public Sphere(Vector2 position, float radius, Color color) : base(position)
{
Radius = radius;
Color = color;
}
public override void Draw()
{
base.Draw();
Raylib.DrawCircleV(Position,Radius, Color);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

55
RaylibTest/Window.cs Normal file
View File

@ -0,0 +1,55 @@
using System.Numerics;
using Raylib_cs;
namespace RaylibTest;
public class Window
{
protected int Width { get; set; }
protected int Height { get; set; }
protected string Title { get; set; }
protected int TargetFps { get; set; }
private List<GameObject> gameObjects = new List<GameObject>();
public Window(int width, int height, string title, int targetFps)
{
Width = width;
Height = height;
Title = title;
TargetFps = targetFps;
}
public virtual void Start()
{
Raylib.InitWindow(Width, Height, Title);
Raylib.SetTargetFPS(TargetFps);
Raylib.SetWindowMinSize(Width, Height);
while (!Raylib.WindowShouldClose())
{
Raylib.BeginDrawing();
Raylib.ClearBackground(Color.WHITE);
Update();
Raylib.EndDrawing();
}
}
public virtual void Update()
{
foreach (var gameObject in gameObjects)
{
gameObject.Draw();
}
}
public virtual void RegisterGameObject(GameObject gameObject)
{
gameObjects.Add(gameObject);
}
public virtual void Stop()
{
Raylib.CloseWindow();
}
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,74 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"RaylibTest/1.0.0": {
"dependencies": {
"Raylib-cs": "4.0.0.1"
},
"runtime": {
"RaylibTest.dll": {}
}
},
"Raylib-cs/4.0.0.1": {
"dependencies": {
"System.Numerics.Vectors": "4.5.0"
},
"runtime": {
"lib/net6.0/Raylib-cs.dll": {
"assemblyVersion": "0.0.0.0",
"fileVersion": "0.0.0.0"
}
},
"runtimeTargets": {
"runtimes/linux-x64/native/libraylib.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/osx-x64/native/libraylib.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/raylib.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/raylib.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.Numerics.Vectors/4.5.0": {}
}
},
"libraries": {
"RaylibTest/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Raylib-cs/4.0.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P8VqY5UsEawOoWElEcLNmLu08zOpvkk5C7eI0OKR8fDL7v6bPkFchC8iUJI47BgPq0lYsQbnMeEOe2bz/HZ5bA==",
"path": "raylib-cs/4.0.0.1",
"hashPath": "raylib-cs.4.0.0.1.nupkg.sha512"
},
"System.Numerics.Vectors/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
"path": "system.numerics.vectors/4.5.0",
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("RaylibTest")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("RaylibTest")]
[assembly: System.Reflection.AssemblyTitleAttribute("RaylibTest")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@ -0,0 +1 @@
847aa2382d06128c731087adfa76b7f0dc4916a6

View File

@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = RaylibTest
build_property.ProjectDir = /Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/

View File

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

Binary file not shown.

View File

@ -0,0 +1 @@
a2d1cedbc5ed7528cb3f4a0e5feb8a12993c50f2

View File

@ -0,0 +1,21 @@
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.deps.json
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.runtimeconfig.json
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.pdb
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/Raylib-cs.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/linux-x64/native/libraylib.so
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/osx-x64/native/libraylib.dylib
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/win-x64/native/raylib.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/win-x86/native/raylib.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.AssemblyReference.cache
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.GeneratedMSBuildEditorConfig.editorconfig
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfoInputs.cache
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfo.cs
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CoreCompileInputs.cache
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CopyComplete
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/refint/RaylibTest.dll
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.pdb
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.genruntimeconfig.cache
/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/ref/RaylibTest.dll

Binary file not shown.

View File

@ -0,0 +1 @@
b057f23e9e7f8c6aa9c2930c89c9bdcf26595cf6

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj": {}
},
"projects": {
"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj",
"projectName": "RaylibTest",
"projectPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj",
"packagesPath": "/Users/eliasstepanik/.nuget/packages/",
"outputPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/eliasstepanik/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Raylib-cs": {
"target": "Package",
"version": "[4.0.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/eliasstepanik/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/eliasstepanik/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/Users/eliasstepanik/.nuget/packages/" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@ -0,0 +1,182 @@
{
"version": 3,
"targets": {
"net6.0": {
"Raylib-cs/4.0.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.5.0"
},
"compile": {
"lib/net6.0/Raylib-cs.dll": {}
},
"runtime": {
"lib/net6.0/Raylib-cs.dll": {}
},
"runtimeTargets": {
"runtimes/linux-x64/native/libraylib.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/osx-x64/native/libraylib.dylib": {
"assetType": "native",
"rid": "osx-x64"
},
"runtimes/win-x64/native/raylib.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x86/native/raylib.dll": {
"assetType": "native",
"rid": "win-x86"
}
}
},
"System.Numerics.Vectors/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
}
}
},
"libraries": {
"Raylib-cs/4.0.0.1": {
"sha512": "P8VqY5UsEawOoWElEcLNmLu08zOpvkk5C7eI0OKR8fDL7v6bPkFchC8iUJI47BgPq0lYsQbnMeEOe2bz/HZ5bA==",
"type": "package",
"path": "raylib-cs/4.0.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"README.md",
"lib/net5.0/Raylib-cs.dll",
"lib/net5.0/Raylib-cs.xml",
"lib/net6.0/Raylib-cs.dll",
"lib/net6.0/Raylib-cs.xml",
"raylib-cs.4.0.0.1.nupkg.sha512",
"raylib-cs.nuspec",
"raylib-cs_64x64.png",
"runtimes/linux-x64/native/libraylib.so",
"runtimes/osx-x64/native/libraylib.dylib",
"runtimes/win-x64/native/raylib.dll",
"runtimes/win-x86/native/raylib.dll"
]
},
"System.Numerics.Vectors/4.5.0": {
"sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
"type": "package",
"path": "system.numerics.vectors/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Numerics.Vectors.dll",
"lib/net46/System.Numerics.Vectors.xml",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.Numerics.Vectors.dll",
"lib/netstandard1.0/System.Numerics.Vectors.xml",
"lib/netstandard2.0/System.Numerics.Vectors.dll",
"lib/netstandard2.0/System.Numerics.Vectors.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/System.Numerics.Vectors.dll",
"ref/net45/System.Numerics.Vectors.xml",
"ref/net46/System.Numerics.Vectors.dll",
"ref/net46/System.Numerics.Vectors.xml",
"ref/netcoreapp2.0/_._",
"ref/netstandard1.0/System.Numerics.Vectors.dll",
"ref/netstandard1.0/System.Numerics.Vectors.xml",
"ref/netstandard2.0/System.Numerics.Vectors.dll",
"ref/netstandard2.0/System.Numerics.Vectors.xml",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.numerics.vectors.4.5.0.nupkg.sha512",
"system.numerics.vectors.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
}
},
"projectFileDependencyGroups": {
"net6.0": [
"Raylib-cs >= 4.0.0.1"
]
},
"packageFolders": {
"/Users/eliasstepanik/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj",
"projectName": "RaylibTest",
"projectPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj",
"packagesPath": "/Users/eliasstepanik/.nuget/packages/",
"outputPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/eliasstepanik/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Raylib-cs": {
"target": "Package",
"version": "[4.0.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json"
}
}
}
}

View File

@ -0,0 +1,11 @@
{
"version": 2,
"dgSpecHash": "ZLRHEHIik5SzF6attIlTrCgy8PES2zeaUoZ/NTlbSRiMEaTgeWPzV4QjkTW1p81cim/6+h3MFiKGYmK0gfjpgw==",
"success": true,
"projectFilePath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj",
"expectedPackageFiles": [
"/Users/eliasstepanik/.nuget/packages/raylib-cs/4.0.0.1/raylib-cs.4.0.0.1.nupkg.sha512",
"/Users/eliasstepanik/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512"
],
"logs": []
}

View File

@ -0,0 +1 @@
"restore":{"projectUniqueName":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj","projectName":"RaylibTest","projectPath":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj","outputPath":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"Raylib-cs":{"target":"Package","version":"[4.0.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json"}}

View File

@ -0,0 +1 @@
16579747529779095