Asylum.Net 1.0.0

dotnet add package Asylum.Net --version 1.0.0
NuGet\Install-Package Asylum.Net -Version 1.0.0
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="Asylum.Net" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Asylum.Net --version 1.0.0
#r "nuget: Asylum.Net, 1.0.0"
#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.
// Install Asylum.Net as a Cake Addin
#addin nuget:?package=Asylum.Net&version=1.0.0

// Install Asylum.Net as a Cake Tool
#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.

License .NET Workflow

💁‍♀ïļ Getting Started

Get started by reviewing the answers to the following questions:

âœĻ 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 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. 
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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 86 3/20/2024