Drastic.Flex 1.0.2

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

// Install Drastic.Flex as a Cake Tool
#tool nuget:?package=Drastic.Flex&version=1.0.2

NuGet Version License

Drastic.Flex

Drastic.Flex is a binding of Flex, An in-app debugging and exploration tool for iOS, for .NET.

NOTE

The "Heap Objects" option will always crash. If you want to explore the heap, use the other dotnet diagnostics tools like dotnet-trace instead.

How To

  • Install the Nuget.
  • Run Drastic.FLEX.FLEXManager.SharedManager.ShowExplorer(); to show the explorer.

MAUI Notes

When using with MAUI, depending on when you call for ShowExplorer(), its contents may be malformed. For best results, show it after your initial page contents have loaded.

public partial class MainPage : ContentPage
{
    int count = 0;

    public MainPage()
    {
        InitializeComponent();
    }

    protected override void OnHandlerChanged()
    {
        base.OnHandlerChanged();
#if IOS
        Drastic.FLEX.FLEXManager.SharedManager.ShowExplorer();
#endif
    }
}
Product Compatible and additional computed target framework versions.
.NET net7.0-ios16.1 is compatible.  net8.0-ios was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0-ios16.1

    • 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.2 210 3/19/2023