GmodNET.API 0.4.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package GmodNET.API --version 0.4.1
NuGet\Install-Package GmodNET.API -Version 0.4.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GmodNET.API" Version="0.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GmodNET.API --version 0.4.1
#r "nuget: GmodNET.API, 0.4.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GmodNET.API as a Cake Addin
#addin nuget:?package=GmodNET.API&version=0.4.1

// Install GmodNET.API as a Cake Tool
#tool nuget:?package=GmodNET.API&version=0.4.1

GmodNET.API

Library of common GmodNET interfaces needed for creating Garry's Mod managed modules.

Current GmodNET Runtime

0.4.2 Nakhodka

Usage

To create a GmodNET module just reference this package and write one or more implementations of GmodNET.API.IModule interface.

Resulting module, dependencies, and *.deps.json should be placed in garrysnod/lua/bin/Modules/%exact_name_of_your_module_without_dot_dll%/ folder.

If your module is signed with GmodNetModuleSigner, then place *.modulekey and *.modulesign files in the same folder as described above.

For more information

Visit https://github.com/GlebChili/GmodDotNet or join our Discord server.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 411 1/25/2023
0.7.6 472 6/20/2022
0.7.5 431 5/29/2022
0.7.4 447 4/17/2022
0.7.3 458 3/13/2022
0.7.2 467 2/11/2022
0.7.1 305 12/17/2021
0.7.0 352 11/14/2021
0.6.0 519 9/16/2020
0.6.0-preview 420 3/8/2020
0.5.1 793 1/22/2020
0.5.1-preview.1 288 1/21/2020
0.5.1-preview 345 1/17/2020
0.5.0 528 12/5/2019
0.5.0-preview 355 12/4/2019
0.4.1 647 11/14/2019
0.4.0-preview2 472 11/11/2019
0.4.0-preview 398 11/9/2019
0.3.1 524 10/9/2019

- Added is_serverside parameter for IModule.Load method.

- ILua interface now covers full Garry's Mod native lua API

. - Enum of indeces of Garry's Mod types added. - IModule.Load method now have parameter which receives AssemblyLoadContext of the module.