2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

Initial project update.

- Updated github actions workflow to build using .NET Core on Linux, Windows and Mac.
- Updated Raylib-cs.sln with project name changes.
- Added experimental netfx.props to help with building using Mono on Linux.
- Added app.config.
This commit is contained in:
2020-04-01 14:35:26 +01:00
parent 38ae234d34
commit 631493ac87
4 changed files with 43 additions and 5 deletions

6
app.config Executable file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<dllmap dll="raylib" os="windows" target="raylib.dll"/>
<dllmap dll="raylib" os="osx" target="libraylib.dylib"/>
<dllmap dll="raylib" os="linux" target="libraylib.so.0"/>
</configuration>