Stormancer.Server.Plugins.Gameye 0.1.0.13

dotnet add package Stormancer.Server.Plugins.Gameye --version 0.1.0.13
                    
NuGet\Install-Package Stormancer.Server.Plugins.Gameye -Version 0.1.0.13
                    
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="Stormancer.Server.Plugins.Gameye" Version="0.1.0.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stormancer.Server.Plugins.Gameye" Version="0.1.0.13" />
                    
Directory.Packages.props
<PackageReference Include="Stormancer.Server.Plugins.Gameye" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stormancer.Server.Plugins.Gameye --version 0.1.0.13
                    
#r "nuget: Stormancer.Server.Plugins.Gameye, 0.1.0.13"
                    
#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.
#:package Stormancer.Server.Plugins.Gameye@0.1.0.13
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stormancer.Server.Plugins.Gameye&version=0.1.0.13
                    
Install as a Cake Addin
#tool nuget:?package=Stormancer.Server.Plugins.Gameye&version=0.1.0.13
                    
Install as a Cake Tool

Gameye plugin

Enables the Stormancer game session system to host game servers in Gameye.

Installation

Client

//Include the plugin code
#include "gameye.hpp"


[...]

// In the Stormancer library configuration code, add and configure the Gameye plugin.

conf->additionalParameters[Stormancer::Gameye::ConfigurationKeys::GameyePortId] = "7777";
conf->addPlugin(new Stormancer::Gameye::GameyePlugin());

Server

  • Add the Stormancer.Server.Plugins.Gameye NuGet package to the application server project.
  • Declare a Gameye game server pool and configure the game session system to use it.

pool configuration options

"gameyePool1":{ "Image":"docker-image:xx", "Region":"europe", //Default game eye region to host game servers if no appropriate region mapping found between a region in the game and a region in gameye. "RegionsMapping":{"eu":"europe"} //Maps the regions of the game to regions in gameye. }

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.1.0.13 162 3/3/2025
0.1.0.13-pre 99 3/11/2024
0.1.0.12-pre 190 11/11/2023
0.1.0.11-pre 114 11/8/2023
0.1.0.10-pre 132 10/30/2023
0.1.0.9-pre 130 10/25/2023
0.1.0.8-pre 135 10/20/2023
0.1.0.7-pre 137 9/29/2023
0.1.0.6-pre 164 8/29/2023
0.1.0.5-pre 184 6/15/2023
0.1.0.4-pre 151 6/15/2023
0.1.0.3-pre 150 6/15/2023
0.1.0.1-pre 165 6/14/2023
0.1.0-pre 158 6/13/2023

Added
*******
- Added a provider for the Stormancer gameserver system which enables running game servers on Gameye.
- Added support for container logs retrieval.