AspNetCore.VersionInfo
2.0.0
dotnet add package AspNetCore.VersionInfo --version 2.0.0
NuGet\Install-Package AspNetCore.VersionInfo -Version 2.0.0
<PackageReference Include="AspNetCore.VersionInfo" Version="2.0.0" />
<PackageVersion Include="AspNetCore.VersionInfo" Version="2.0.0" />
<PackageReference Include="AspNetCore.VersionInfo" />
paket add AspNetCore.VersionInfo --version 2.0.0
#r "nuget: AspNetCore.VersionInfo, 2.0.0"
#:package AspNetCore.VersionInfo@2.0.0
#addin nuget:?package=AspNetCore.VersionInfo&version=2.0.0
#tool nuget:?package=AspNetCore.VersionInfo&version=2.0.0
AspNetCore.VersionInfo
AspNetCore.VersionInfo is a library to expose information about assembly versions used in your web application. In particular there are three endpoints, which returns:
- a JSON-formatted data (/version/json)
- an HTML user-friendly page (/version/html)
- a nice badge image (/version/badge)
Library offers some in-bundle providers to capture versions information, such as the version of entry assembly or the version of the common language runtime. A typical JSON output is:
{
"RuntimeInformation.FrameworkDescription":".NET 6.0.8",
"EntryAssemblyVersion":"2.5.0.0",
...
}
Moreover it is possible create a specific class to collect additional data as described in Providers section.
🧰 Supported Platforms
This library currently targets net8.0
📦 Download
Prerelease packages are on GH Packages
Release packages are on Nuget
🚀 Online Demo
URL | |
---|---|
![]() |
https://aspnetcoreversioninfo-demo.azurewebsites.net |
![]() |
/version/html |
![]() |
/version/json |
![]() |
/version/badge |
![]() |
https://aspnetcoreversioninfo-linux-demo.azurewebsites.net |
![]() |
/version/html |
![]() |
/version/json |
![]() |
/version/badge |
⭐ Getting Started
Startup.cs
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddVersionInfo()
.With<ClrVersionProvider>()
.With<AssemblyVersionProvider>();
}
public void Configure(IApplicationBuilder app)
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapVersionInfo();
});
}
}
🔌 Providers
Library is based on following types:
- Providers, that read information and return data in a dictionary
- Collector, that aggregates all data from providers and exposes to endpoints.
A Collector implementation is already included in AspNetCore.VersionInfo package, and usually its default implementation is valid for all scenarios.
Instead, in order to enrich data gathered from library, multiple custom providers could be developed, implementing custom classes inherited from IInfoProvider
interface.
To show providers' information, they have to be configured in ConfigureServices
declaration, using .With<IInfoProvider>
extension method.
In-bundle providers
AspNetCore.VersionInfo package includes following providers:
Provider | Keys | Description |
---|---|---|
AssemblyVersionProvider | EntryAssembly , EntryAssemblyFullName , EntryAssemblyLocation , EntryAssemblyDirectoryPath , EntryAssemblyFileVersion , EntryAssemblyClrVersion , EntryAssemblyCreationDate , EntryAssemblyLastModifiedDate |
Version and main properties of entry assembly |
ClrVersionProvider | RuntimeInformation.FrameworkDescription , RuntimeInformation.OsDescription , RuntimeInformation.OsArchitecture , RuntimeInformation.ProcessArchitecture , RuntimeInformation.RuntimeIdentifier |
Version of the common language runtime and .NET installation on which the app is running |
AppDomainAssembliesVersionProvider | <AssemblyName> |
Version of assemblies loaded in App Domain |
EnvironmentProvider | Environment.Uptime , Environment.OSVersion , Environment.IsOsWindows , Environment.Is64BitOperatingSystem , Environment.Is64BitProcess , Environment.ProcessorCount , Environment.MachineName , Environment.SystemDirectory , Environment.WorkingDirectory , Environment.CommandLine , Environment.DotNetVersion |
Environment properties |
EnvironmentVariablesProvider | <EnvironmentVariableName> -<EnvironmentVariableValue> |
Environment variables |
🔧 Options
MapVersionInfo
extension method accepts an optional VersionInfoOptions
argument to change default URLs:
public void Configure(IApplicationBuilder app)
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapVersionInfo(o =>
{
o.HtmlPath = CUSTOM_HTML_URL;
o.ApiPath = CUSTOM_JSON_URL;
});
});
}
🖼 Badges
Badge image can be obtained with url
/version/badge/{versionInfoId}
where {versionInfoId}
is a key returned by providers.
Moreover endpoint accepts following parameters in querystring:
label
: it's the name to show in the imageicon
: the source type and slug for the icon separated by two underscore characters (__
) such assimpleicons__linux
. In this version only Simple Icons type is supported; you can find a list of slugs here. Icon color is always white.color
: a string as defined in the colors table or a custom colors in hexadecimal, RGB, HSL.
Color | String |
---|---|
#4c1 | BrightGreen |
#97CA00 | Green |
#dfb317 | Yellow |
#a4a61d | YellowGreen |
#fe7d37 | Orange |
#e05d44 | Red |
#007ec6 | Blue |
#555 | Gray |
#9f9f9f | LightGray |
💿 Examples
Name | Notes | Repository |
---|---|---|
Basic | Simple .NET 6 WebApplication with built-in endpoints (published in demo site) | 💾 |
CustomOptions | WebApplication with custom configuration for endpoint URLs | 💾 |
Minimal | WebApplication using Minimal API | 💾 |
Authentication | WebApplication leverages the ASP.NET Core Authentication/Authorization features to easily restrict access | 💾 |
🔑 Security
Enable Endpoint only in Development mode
In order to enable AspNetCore.VersionInfo only in the development environment, change Configure
method
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
app.UseEndpoints(endpoints =>
{
if (env.IsDevelopment())
{
endpoints.MapVersionInfo();
}
});
...
}
Authorization Policy on endpoint
public void ConfigureServices(IServiceCollection services)
{
...
services.AddAuthorization(cfg =>
{
cfg.AddPolicy(name: Constants.VERSIONINFO_USER_POLICY, cfgPolicy =>
{
cfgPolicy.AddRequirements().RequireAuthenticatedUser();
cfgPolicy.AddAuthenticationSchemes(Constants.COOKIE_SCHEME);
});
});
...
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
...
app.UseEndpoints(endpoints =>
{
endpoints.MapVersionInfo().RequireAuthorization(Constants.VERSIONINFO_USER_POLICY); ;
});
...
}
For more information, you can inspect Authentication example.
📄 License
AspNetCore.VersionInfo is Apache-2.0 licensed
Product | Versions 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. |
-
net8.0
- Microsoft.Extensions.Http (>= 9.0.2)
- System.Text.Json (>= 9.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.