GMSVesselOneSSOWc1.2026.S1 0.0.25

dotnet add package GMSVesselOneSSOWc1.2026.S1 --version 0.0.25
                    
NuGet\Install-Package GMSVesselOneSSOWc1.2026.S1 -Version 0.0.25
                    
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="GMSVesselOneSSOWc1.2026.S1" Version="0.0.25" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GMSVesselOneSSOWc1.2026.S1" Version="0.0.25" />
                    
Directory.Packages.props
<PackageReference Include="GMSVesselOneSSOWc1.2026.S1" />
                    
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 GMSVesselOneSSOWc1.2026.S1 --version 0.0.25
                    
#r "nuget: GMSVesselOneSSOWc1.2026.S1, 0.0.25"
                    
#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 GMSVesselOneSSOWc1.2026.S1@0.0.25
                    
#: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=GMSVesselOneSSOWc1.2026.S1&version=0.0.25
                    
Install as a Cake Addin
#tool nuget:?package=GMSVesselOneSSOWc1.2026.S1&version=0.0.25
                    
Install as a Cake Tool

GMS.SSO.Sdk

GMS.SSO.Sdk is used by business subsystems to integrate with GMS.SSO.

Current capabilities:

  • Built-in SSO authentication and authorization integration
  • Local session management
  • Default /api/sso/* endpoints
  • Token exchange, introspection, and revoke calls to GMS.SSO
  • Externalized subsystem configuration loading
  • Self-contained SDK contracts without requiring GMS.Shared.Contracts

Minimal setup

using GMS.SSO.SDK.Configuration;
using GMS.SSO.SDK.DependencyInjection;
using GMS.SSO.SDK.Extensions;

var builder = WebApplication.CreateBuilder(args);

builder.AddGMSSSOSDKExternalConfiguration("GMS.Data");
builder.Services.AddGMSSSOSDK(builder.Configuration);

var app = builder.Build();

app.UseAuthentication();
app.UseAuthorization();
app.MapGMSSSOSDKEndpoints();

External configuration path

The SDK generates and loads the subsystem external configuration file at:

  • C:\\GMSSYSConfigs\\<AppName>Options\\appsettings.json

For example:

  • C:\\GMSSYSConfigs\\GMS.DataOptions\\appsettings.json

Notes

  • Only endpoints explicitly marked with SDK authorization attributes enter the SDK SSO authentication pipeline.
  • Unmarked normal endpoints do not proactively trigger SDK SSO validation.
  • User token payloads and introspection responses include CusId when the subject is a user session.
  • Starting from version 0.0.5, the SDK no longer exposes a package dependency on GMS.Shared.Contracts.
  • The generated external configuration template now contains only SDK base sections. Business-specific sections should be appended explicitly by the host application.
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.0.25 90 6/2/2026
0.0.24 96 6/1/2026
0.0.23 107 5/8/2026
0.0.22 97 5/7/2026
0.0.21 102 4/21/2026
0.0.20 91 4/21/2026
0.0.19 96 4/21/2026
0.0.18 100 4/20/2026
0.0.17 97 4/20/2026
0.0.16 107 4/17/2026
0.0.15 96 4/17/2026
0.0.14 100 4/17/2026
0.0.13 101 4/16/2026
0.0.12 97 4/16/2026
0.0.11 94 4/16/2026
0.0.10 106 4/15/2026
0.0.9 108 4/14/2026
0.0.8 103 4/13/2026
0.0.7 107 4/8/2026
0.0.6 124 4/7/2026 0.0.6 is deprecated because it is no longer maintained.
Loading failed