Nemesis.Essentials.TypeMeta.Sources
1.0.47
See the version list below for details.
dotnet add package Nemesis.Essentials.TypeMeta.Sources --version 1.0.47
NuGet\Install-Package Nemesis.Essentials.TypeMeta.Sources -Version 1.0.47
<PackageReference Include="Nemesis.Essentials.TypeMeta.Sources" Version="1.0.47"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Nemesis.Essentials.TypeMeta.Sources --version 1.0.47
#r "nuget: Nemesis.Essentials.TypeMeta.Sources, 1.0.47"
// Install Nemesis.Essentials.TypeMeta.Sources as a Cake Addin #addin nuget:?package=Nemesis.Essentials.TypeMeta.Sources&version=1.0.47 // Install Nemesis.Essentials.TypeMeta.Sources as a Cake Tool #tool nuget:?package=Nemesis.Essentials.TypeMeta.Sources&version=1.0.47
Lightweight source only package with TypeMeta class - set of utils that aids in reflection tasks. Consume via <PackageReference Include="Nemesis.Essentials.TypeMeta.Sources" Version="VERSION" PrivateAssets="All" />
This package was built from the source at https://github.com/nemesissoft/Nemesis.Essentials/tree/867f277bdf20c0200de45a3715943711b2531b77
Product | Versions 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. |
.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. |
This package has no dependencies.
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 |
---|---|---|
1.2.2 | 930 | 9/22/2023 |
1.2.1 | 331 | 1/5/2023 |
1.1.3 | 593 | 3/9/2021 |
1.1.2 | 345 | 2/10/2021 |
1.1.1 | 543 | 11/20/2020 |
1.1.0 | 448 | 11/17/2020 |
1.0.56 | 599 | 4/9/2020 |
1.0.55 | 450 | 4/9/2020 |
1.0.54 | 461 | 4/6/2020 |
1.0.53 | 507 | 4/4/2020 |
1.0.52 | 616 | 3/19/2020 |
1.0.51 | 575 | 3/18/2020 |
1.0.50 | 454 | 2/25/2020 |
1.0.49 | 483 | 2/25/2020 |
1.0.48 | 481 | 2/24/2020 |
1.0.47 | 540 | 2/24/2020 |
1.0.46 | 461 | 2/18/2020 |
1.0.45 | 559 | 12/16/2019 |
1.0.44 | 512 | 12/16/2019 |
1.0.43 | 514 | 11/8/2019 |
1.0.42 | 526 | 10/24/2019 |
1.0.41 | 518 | 10/24/2019 |
1.0.40 | 512 | 10/23/2019 |
1.0.39 | 497 | 9/28/2019 |
1.0.38 | 475 | 9/27/2019 |
1.0.32 | 508 | 9/27/2019 |
1.0.31 | 529 | 9/27/2019 |
1.0.30 | 524 | 9/26/2019 |
1.0.29 | 507 | 9/26/2019 |
1.0.26 | 483 | 9/25/2019 |
1.0.25 | 485 | 9/25/2019 |
1.0.20 | 518 | 9/23/2019 |
1.0.17 | 3,167 | 7/23/2019 |
1.0.16 | 543 | 7/23/2019 |
1.0.11 | 539 | 7/23/2019 |
1.0.0 | 482 | 9/25/2019 |
Release v1.0.47
Improve GetConcreteGenericTypeFromDefinition method in adding support for class concretization
For the following input pairs, one can expect the following output:
| Type | GenericTypeDefinition | Resulting type |
|------|-----------------------|----------------|
| ``typeof(int?)`` | ``typeof(Nullable<>)`` | `` typeof(int?)`` |
| ``typeof(int[])`` | ``typeof(ICollection<>)`` | ``typeof(ICollection<int>)`` |
| ``typeof(int[])`` | ``typeof(IEnumerable<>)`` | ``typeof(IEnumerable<int>)`` |
| ``typeof(Dictionary<int?, string>)``| ``typeof(IEnumerable<>)`` | ``typeof(IEnumerable<KeyValuePair<int?, string>>)`` |
| ``typeof(Dictionary<int, string>)`` | ``typeof(IReadOnlyDictionary<,>)`` | ``typeof(IReadOnlyDictionary<int, string>)`` |