![]() |
VOOZH | about |
dotnet add package Gapotchenko.FX.AppModel.Information --version 2026.7.2
NuGet\Install-Package Gapotchenko.FX.AppModel.Information -Version 2026.7.2
<PackageReference Include="Gapotchenko.FX.AppModel.Information" Version="2026.7.2" />
<PackageVersion Include="Gapotchenko.FX.AppModel.Information" Version="2026.7.2" />Directory.Packages.props
<PackageReference Include="Gapotchenko.FX.AppModel.Information" />Project file
paket add Gapotchenko.FX.AppModel.Information --version 2026.7.2
#r "nuget: Gapotchenko.FX.AppModel.Information, 2026.7.2"
#:package Gapotchenko.FX.AppModel.Information@2026.7.2
#addin nuget:?package=Gapotchenko.FX.AppModel.Information&version=2026.7.2Install as a Cake Addin
#tool nuget:?package=Gapotchenko.FX.AppModel.Information&version=2026.7.2Install as a Cake Tool
The module provides functionality for getting information about the app.
To get information about the current app, use AppInformation.Current property:
using Gapotchenko.FX.AppModel.Information;
using System;
var info = AppInformation.Current;
Console.WriteLine("Product: {0}", info.ProductName);
Console.WriteLine("Version: {0}", info.ProductVersion);
Console.WriteLine("Company: {0}", info.CompanyName);
Console.WriteLine("Copyright: {0}", info.Copyright);
This can be useful for purposes like showing an about box in GUI or a copyright banner in console.
Sometimes a program consists of several parts, each of which has its own associated product information.
To get information about a specific part of the program other than the main app, use AppInformation.For(Type) method:
using Gapotchenko.FX.AppModel.Information;
using System;
var info = AppInformation.For(typeof(object));
Console.WriteLine("Product: {0}", info.ProductName);
Console.WriteLine("Version: {0}", info.ProductVersion);
Console.WriteLine("Company: {0}", info.CompanyName);
Console.WriteLine("Copyright: {0}", info.Copyright);
Note that the example above gets information for System.Object type which belongs to .NET BCL (Base Class Library).
The retrieved information about that part looks like so:
Product: Microsoft® .NET
Version: 8.0.824.36612
Company: Microsoft Corporation
Copyright: © Microsoft Corporation. All rights reserved.
You can use this functionality to retrieve information about any other part of the program. It can be a plugin, a library, and so on.
There also exists AppInformation.For(Assembly) overload of the For method.
That method overload retrieves information about a specific assembly.
It is useful for situations when you have no specific System.Type at hand to retrieve the information for, but only a System.Assembly.
Note that it is preferable to use AppInformation.For(Type) method because it is slightly more precise than AppInformation.For(Assembly).
Gapotchenko.FX.AppModel.AppInformationLet's continue with a look at some other modules provided by Gapotchenko.FX:
Or look at the full list of modules.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.7.2 | 119 | 5/16/2026 |
| 2026.6.2 | 138 | 3/29/2026 |
| 2026.5.3 | 116 | 2/24/2026 |
| 2026.4.2 | 149 | 2/4/2026 |
| 2026.3.5 | 121 | 1/29/2026 |
| 2026.2.2 | 119 | 1/25/2026 |
| 2026.1.5 | 122 | 1/13/2026 |
| 2025.1.45 | 207 | 12/25/2025 |
| 2025.1.27-beta | 212 | 10/8/2025 |
| 2025.1.26-beta | 246 | 8/30/2025 |
| 2025.1.25-beta | 930 | 7/22/2025 |
| 2025.1.24-beta | 426 | 7/16/2025 |
| 2025.1.23-beta | 299 | 7/12/2025 |
| 2024.2.5 | 248 | 12/31/2024 |
| 2024.1.3 | 214 | 11/10/2024 |
| 2022.2.7 | 683 | 5/1/2022 |
| 2022.2.5 | 593 | 5/1/2022 |
| 2022.1.4 | 596 | 4/6/2022 |
| 2021.2.21 | 657 | 1/21/2022 |