Skip to content

Steveplays28/nularc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nularc icon

Nularc

GitHub GitHub GitHub GitHub GitHub

Packet-based, lightweight C# UDP networking library.

Installation

NuGet

Visual Studio

Install Nularc via the NuGet package manager UI built into Visual Studio.
For more information, see the Microsoft Documentation.

.NET CLI

dotnet add package Nularc

For more information, see the Microsoft Documentation.

DLL/manual install

Download the latest release, extract it into your project, and add the following to your .csproj file (inside the <Project> tag):

<ItemGroup>
  <Reference Include="Nularc">
    <HintPath>PATH\TO\Nularc\Nularc.dll</HintPath>
  </Reference>
</ItemGroup>

Make sure to change the path to the location of the dll!

Contributing

If you want to give a suggestion, or add/change something, feel free to open an issue/create a pull request!
Please check if there isn't already an issue/pull request open.

Development environment

Requirements:

git clone https://github.com/Steveplays28/nularc.git
cd nularc

dotnet build

Documentation

If you want to edit the documentation, run the following commands to get a local, editable copy of the documentation up and running:

git clone https://github.com/Steveplays28/nularc.git
cd nularc

docsify serve ./docs

You can now preview your changes to the documentation at localhost:3000.

License

This project is licensed under the LGPLv2.1 License, see the LICENSE file for more details.