mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Update README.md and package details (#255)
This commit is contained in:
parent
daa124aee1
commit
ab3faacd24
24
README.md
24
README.md
@ -1,16 +1,18 @@
|
|||||||

|

|
||||||
|
|
||||||
# Raylib-cs
|
# Raylib-cs
|
||||||
|
|
||||||
C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||||
|
|
||||||
[](https://github.com/ChrisDill/Raylib-cs/graphs/contributors)
|
[](https://github.com/chrisdill/raylib-cs/graphs/contributors)
|
||||||
|
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
|
|
||||||
[](https://discord.gg/raylib)
|
[](https://discord.gg/raylib)
|
||||||
[](https://github.com/ChrisDill/Raylib-cs/stargazers)
|
|
||||||
|
|
||||||
[](https://github.com/ChrisDill/Raylib-cs/actions?query=workflow%3ABuild)
|
[](https://github.com/chrisdill/raylib-cs/stargazers)
|
||||||
|
|
||||||
|
[](https://github.com/chrisdill/raylib-cs/actions?query=workflow%3ABuild)
|
||||||
|
|
||||||
Raylib-cs targets net6.0 and uses the [official 5.0 release](https://github.com/raysan5/raylib/releases/tag/5.0) to build the native libraries.
|
Raylib-cs targets net6.0 and uses the [official 5.0 release](https://github.com/raysan5/raylib/releases/tag/5.0) to build the native libraries.
|
||||||
|
|
||||||
@ -18,9 +20,9 @@ Raylib-cs targets net6.0 and uses the [official 5.0 release](https://github.com/
|
|||||||
|
|
||||||
This is the prefered method to get started.
|
This is the prefered method to get started.
|
||||||
|
|
||||||
1) Pick a folder in which you would like to start a raylib project for example "MyRaylibCSProj"
|
1) Pick a folder in which you would like to start a raylib project. For example "MyRaylibCSProj".
|
||||||
2) Then from a terminal (for example a VSCode terminal), whilst in the folder dir you just created
|
2) Then from a terminal (for example a VSCode terminal), whilst in the directory you just created
|
||||||
run the following commands. (Please keep in mind you should have .NET already installed on your system)
|
run the following commands. (Please keep in mind .NET should already be installed on your system)
|
||||||
|
|
||||||
```
|
```
|
||||||
dotnet new console
|
dotnet new console
|
||||||
@ -80,12 +82,10 @@ class Program
|
|||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
If you have any ideas, feel free to open an issue and tell me what you think.
|
If you have any ideas, feel free to open an issue. If you'd like to contribute, please fork the
|
||||||
If you'd like to contribute, please fork the repository and make changes as
|
repository and make changes as you'd like. Pull requests are warmly welcome.
|
||||||
you'd like. Pull requests are warmly welcome.
|
|
||||||
|
|
||||||
If you want to request features or report bugs related to raylib directly (in contrast to this binding), please refer
|
If you want to request features or report bugs related to raylib directly (in contrast to this binding), please refer to the [author's project repo](https://github.com/raysan5/raylib).
|
||||||
to the [author's project repo](https://github.com/raysan5/raylib).
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetRaylibTag>5.0</TargetRaylibTag>
|
<TargetRaylibTag>5.0</TargetRaylibTag>
|
||||||
<Version>6.1.0</Version>
|
<Version>6.1.1</Version>
|
||||||
<PackageVersion>6.1.0</PackageVersion>
|
<PackageVersion>6.1.1</PackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
@ -11,20 +11,19 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors>Chris Dill, Raysan5</Authors>
|
<Title>Raylib-cs</Title>
|
||||||
|
<Description>C# bindings for raylib - A simple and easy-to-use library to learn videogames programming</Description>
|
||||||
|
<RepositoryUrl>https://github.com/chrisdill/raylib-cs/</RepositoryUrl>
|
||||||
|
<Authors>chrisdill</Authors>
|
||||||
|
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
||||||
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
|
<PackageIcon>raylib-cs_64x64.png</PackageIcon>
|
||||||
|
<PackageTags>raylib csharp gamedev</PackageTags>
|
||||||
|
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
|
||||||
<PackProject>true</PackProject>
|
<PackProject>true</PackProject>
|
||||||
<IncludeSymbols>true</IncludeSymbols>
|
<IncludeSymbols>true</IncludeSymbols>
|
||||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||||
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
|
||||||
<Title>Raylib-cs</Title>
|
|
||||||
<Description>C# bindings for raylib - A simple and easy-to-use library to learn videogames programming</Description>
|
|
||||||
<PackageIcon>raylib-cs_64x64.png</PackageIcon>
|
|
||||||
<PackageTags>raylib;bindings;gamedev</PackageTags>
|
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl>
|
|
||||||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
||||||
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
|
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
@ -35,7 +34,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
||||||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Import Project="./Build.props" />
|
<Import Project="./Build.props" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user