Asylum.Net
1.0.0
dotnet add package Asylum.Net --version 1.0.0
NuGet\Install-Package Asylum.Net -Version 1.0.0
<PackageReference Include="Asylum.Net" Version="1.0.0" />
<PackageVersion Include="Asylum.Net" Version="1.0.0" />
<PackageReference Include="Asylum.Net" />
paket add Asylum.Net --version 1.0.0
#r "nuget: Asylum.Net, 1.0.0"
#addin nuget:?package=Asylum.Net&version=1.0.0
#tool nuget:?package=Asylum.Net&version=1.0.0
ðĪŠ Asylum.Net
Asylum.Net is a lightweight library designed to rescue developers from the common runtime issues caused by obfuscation. It provides a set of tools to help developers diagnose and fix issues caused by obfuscation, and provides a set of best practices to help developers avoid these issues in the first place.
ðââïļ Getting Started
Get started by reviewing the answers to the following questions:
- How do I navigate the codebase with confidence?
- How can I help?
- How should I behave here?
- How do I report security concerns?
- What third-party dependencies are used?
âĻ Features
The initial release contains very basic features for identifying obfuscated members in a .NET ecosystem. Consumers can utilize the RuntimeIdentifierAttribute
to help identify obfuscated members at runtime:
[RuntimeIdentifier(nameof(Sample))]
[Obfuscation(Feature = "virtualization", Exclude = false)]
public sealed class Sample;
Members can be identified with this attribute using natural means or through an extension method GetRuntimeIdentifier
:
var typeName = typeof(Sample).GetRuntimeIdentifier();
Additionally, if you just need to know if a member is marked with the obfuscation attribute, you can use the extension IsObfuscated
for MemberInfo
to determine just that:
var type = typeof(Sample);
if (type.IsObfuscated())
Console.WriteLine("What have I done?");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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 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. |
.NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- 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.0.0 | 144 | 3/20/2024 |