Voyager.Common.Proxy.Server.Swagger.Core 1.7.7

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Voyager.Common.Proxy.Server.Swagger.Core --version 1.7.7
                    
NuGet\Install-Package Voyager.Common.Proxy.Server.Swagger.Core -Version 1.7.7
                    
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="Voyager.Common.Proxy.Server.Swagger.Core" Version="1.7.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Voyager.Common.Proxy.Server.Swagger.Core" Version="1.7.7" />
                    
Directory.Packages.props
<PackageReference Include="Voyager.Common.Proxy.Server.Swagger.Core" />
                    
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 Voyager.Common.Proxy.Server.Swagger.Core --version 1.7.7
                    
#r "nuget: Voyager.Common.Proxy.Server.Swagger.Core, 1.7.7"
                    
#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 Voyager.Common.Proxy.Server.Swagger.Core@1.7.7
                    
#: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=Voyager.Common.Proxy.Server.Swagger.Core&version=1.7.7
                    
Install as a Cake Addin
#tool nuget:?package=Voyager.Common.Proxy.Server.Swagger.Core&version=1.7.7
                    
Install as a Cake Tool

Voyager.Common.Proxy.Server.Swagger.Core

Core library for generating Swagger/OpenAPI documentation from Voyager.Common.Proxy service interfaces.

Overview

This package provides the shared logic for Swagger generation, used by both:

  • Voyager.Common.Proxy.Server.Swagger (ASP.NET Core / Swashbuckle)
  • Voyager.Common.Proxy.Server.Swagger.Owin (OWIN / Swagger.Net)

Key Components

ServiceProxySwaggerGenerator

Generates platform-agnostic path definitions from service interfaces:

var generator = new ServiceProxySwaggerGenerator();
var paths = generator.GeneratePaths<IUserService>();

// Access generated component schemas
var schemas = generator.SchemaGenerator.ComponentSchemas;

SchemaGenerator

Generates JSON Schema definitions from .NET types:

var schemaGenerator = new SchemaGenerator();
var schema = schemaGenerator.GenerateSchema(typeof(User));

// Get all generated component schemas
var componentSchemas = schemaGenerator.ComponentSchemas;

Features

  • Result<T> Unwrapping: Automatically extracts T from Result<T> for response schemas
  • Parameter Binding: Correctly identifies route, query, and body parameters
  • Error Responses: Automatically adds standard error responses (400, 401, 403, 404, 409, 500)
  • Schema Generation: Generates JSON Schema for complex types, arrays, enums, and primitives
  • Nullable Support: Correctly handles nullable types and reference types

Models

  • PathDefinition - Represents an API path with HTTP method and operation
  • OperationDefinition - Represents an API operation with parameters, request body, and responses
  • ParameterDefinition - Represents a path, query, or header parameter
  • RequestBodyDefinition - Represents a request body with content type and schema
  • ResponseDefinition - Represents an HTTP response with status code and schema
  • SchemaDefinition - Platform-agnostic JSON Schema representation
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.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Voyager.Common.Proxy.Server.Swagger.Core:

Package Downloads
Voyager.Common.Proxy.Server.Swagger.Owin

Swagger/OpenAPI integration for Voyager.Common.Proxy.Server on OWIN/.NET Framework 4.8. Automatically generates API documentation from service interfaces using Swagger-Net.

Voyager.Common.Proxy.Server.Swagger

Swagger/OpenAPI integration for Voyager.Common.Proxy.Server on ASP.NET Core. Automatically generates API documentation from service interfaces using Swashbuckle.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.7.8-preview.1 0 2/9/2026
1.7.7 36 2/6/2026
1.7.7-preview.1.1 31 2/6/2026