Rest of rename to QControlKit

This commit is contained in:
2020-09-07 08:42:42 -05:00
parent 69ddf3383c
commit 0aea997309
85 changed files with 2542 additions and 39 deletions
@@ -2,7 +2,7 @@
using System;
using System.Collections.Generic;
namespace QSharp
namespace QControlKit
{
public class QServerFoundArgs : EventArgs
{
@@ -1,4 +1,4 @@
namespace QSharp
namespace QControlKit
{
public delegate void QServerFoundHandler(object source, QServerFoundArgs args);
public delegate void QServerUpdatedHandler(object source, QServerUpdatedArgs args);
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>AnyCPU</LastUsedPlatform>
<publishUrl>bin/Release/netstandard2.0/publish</publishUrl>
<DeleteExistingFiles>false</DeleteExistingFiles>
<TargetFramework>netstandard2.0</TargetFramework>
<SelfContained>false</SelfContained>
<_IsPortable>true</_IsPortable>
</PropertyGroup>
</Project>
@@ -2,7 +2,7 @@
using System.Collections.ObjectModel;
using Serilog;
namespace QSharp
namespace QControlKit
{
public class QBrowser
{
+1 -1
View File
@@ -5,7 +5,7 @@ using Newtonsoft.Json.Linq;
using SharpOSC;
using Serilog;
namespace QSharp
namespace QControlKit
{
public class QClient
{
+1 -1
View File
@@ -1,4 +1,4 @@
namespace QSharp
namespace QControlKit
{
public class QColor
{
+18
View File
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Joel Wetzell</Authors>
<Version>1.0.0-devel</Version>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>0.0.1</PackageVersion>
<PackageId>QControlKit</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Zeroconf" Version="3.4.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>
+1 -1
View File
@@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Drawing;
using System.Linq;
namespace QSharp
namespace QControlKit
{
public class QCue
{
@@ -1,4 +1,4 @@
namespace QSharp
namespace QControlKit
{
static class QBonjour
{
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using SharpOSC;
namespace QSharp
namespace QControlKit
{
public class QMessage
{
+1 -1
View File
@@ -4,7 +4,7 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using Zeroconf;
namespace QSharp
namespace QControlKit
{
public class QServer
{
@@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Timers;
namespace QSharp
namespace QControlKit
{
public class QWorkspace
{
@@ -1,5 +1,5 @@
//General information about a QLab Workspace
namespace QSharp
namespace QControlKit
{
public class QWorkspaceInfo
{
@@ -8,9 +8,9 @@ using Android.Widget;
using Android.OS;
using Serilog;
namespace QSharpXamDemo.Droid
namespace QControlKitXamDemo.Droid
{
[Activity(Label = "QSharpXamDemo", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
[Activity(Label = "QControlKitXamDemo", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.qsharpxamdemo">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.jwetzell.qcontrolkitxamdemo">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
<application android:label="QSharpXamDemo.Android"></application>
<application android:label="QControlKitXamDemo.Android"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
@@ -6,11 +6,11 @@ using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("QSharpXamDemo.Android")]
[assembly: AssemblyTitle("QControlKitXamDemo.Android")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("QSharpXamDemo.Android")]
[assembly: AssemblyProduct("QControlKitXamDemo.Android")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4F7F13C7-85EF-431F-AB03-B2494F0F4C7F}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{c9e5eea5-ca05-42a1-839b-61506e0a37df}</TemplateGuid>
<OutputType>Library</OutputType>
<RootNamespace>QControlKitXamDemo.Droid</RootNamespace>
<AssemblyName>QControlKitXamDemo.Android</AssemblyName>
<Deterministic>True</Deterministic>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.Xamarin">
<Version>0.2.0.64</Version>
</PackageReference>
<PackageReference Include="Xamarin.Forms" Version="4.7.0.968" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\Tabbar.xml" />
<AndroidResource Include="Resources\layout\Toolbar.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-hdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\launcher_foreground.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\drawable\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\QControlKit\QControlKit.csproj">
<Project>{51cd2579-79c9-49a9-b68d-93cbe878baa1}</Project>
<Name>QControlKit</Name>
</ProjectReference>
<ProjectReference Include="..\QControlKitXamDemo\QControlKitXamDemo.csproj">
<Project>{20D2D0D8-A518-42DC-BAB8-CF098CDF03C4}</Project>
<Name>QControlKitXamDemo</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<UserProperties XamarinHotReloadDebuggerTimeoutExceptionQControlKitXamDemoAndroidHideInfoBar="True" />
</VisualStudio>
</ProjectExtensions>
</Project>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "152399872",
"Virtual Size" : "4637904896",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x7000052ab000",
"thread_info_addr" : "0x7fde7b008200",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x7000052aaeb8",
"BP" : "0x7000052aaf00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e96e67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d67fc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97d7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x113474dc0",
"thread_info_addr" : "0x7fde79814000",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffeeafb4cf8",
"BP" : "0x7ffeeafb4d90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e96e67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d67fc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffeeafb49e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f31eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f49f91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e94074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e93e7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104cc15fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104c4d209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000782a000",
"thread_info_addr" : "0x7fde7b49fe00",
"thread_name" : "tid_9c03",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x700007822b98",
"BP" : "0x700007822bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e977aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d69087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d00bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d68382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f54f37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f35dbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f553ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f5554f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f5558a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f49d5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e916c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e9831d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e95f8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x107bb1fcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104c5ded2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e6cf87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e73830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97dbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
}
]
}
@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "144965632",
"Virtual Size" : "4691001344",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000928e000",
"thread_info_addr" : "0x7fc2ae02c600",
"thread_name" : "tid_6303",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x700009286b98",
"BP" : "0x700009286bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d7aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912f087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1090c6bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912e382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931af37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092fbdbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b3ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b54f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b58a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10930fd5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092576c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925e31d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925bf8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1100cffcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109023ed2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109232f87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109239830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ddbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x700006f12000",
"thread_info_addr" : "0x7fc2ac016800",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x700006f11eb8",
"BP" : "0x700006f11f00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ce67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912dfc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925dd7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x10b9a6dc0",
"thread_info_addr" : "0x7fc2ad008200",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffee6beecf8",
"BP" : "0x7ffee6beed90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ce67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912dfc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffee6bee9e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092f7eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10930ff91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925a074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109259e7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1090875fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109013209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
}
]
}
@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "140345344",
"Virtual Size" : "4632956928",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000c029000",
"thread_info_addr" : "0x7fc31ca62200",
"thread_name" : "tid_6603",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x70000c021b98",
"BP" : "0x70000c021bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce7aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102fa0087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f37bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9f382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318bf37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10316cdbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c3ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c54f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c58a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103180d5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030c86c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cf31d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ccf8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x105f09fcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102e94ed2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030a3f87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030aa830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cedbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x105c8ddc0",
"thread_info_addr" : "0x7fc31e808200",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffeecd7dcf8",
"BP" : "0x7ffeecd7dd90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cde67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9efc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffeecd7d9e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103168eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103180f91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cb074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cae7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102ef85fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102e84209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x700009cad000",
"thread_info_addr" : "0x7fc31d820800",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x700009caceb8",
"BP" : "0x700009cacf00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cde67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9efc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ced7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
}
]
}
@@ -5,7 +5,7 @@ using System.Linq;
using Foundation;
using UIKit;
using Serilog;
namespace QSharpXamDemo.iOS
namespace QControlKitXamDemo.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to
@@ -23,15 +23,15 @@
<key>MinimumOSVersion</key>
<string>8.0</string>
<key>CFBundleDisplayName</key>
<string>QSharpXamDemo</string>
<string>QControlKitXamDemo</string>
<key>CFBundleIdentifier</key>
<string>com.companyname.QSharpXamDemo</string>
<string>com.companyname.QControlKitXamDemo</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>CFBundleName</key>
<string>QSharpXamDemo</string>
<string>QControlKitXamDemo</string>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
</dict>
@@ -5,7 +5,7 @@ using System.Linq;
using Foundation;
using UIKit;
namespace QSharpXamDemo.iOS
namespace QControlKitXamDemo.iOS
{
public class Application
{
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("QSharpXamDemo.iOS")]
[assembly: AssemblyTitle("QControlKitXamDemo.iOS")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("QSharpXamDemo.iOS")]
[assembly: AssemblyProduct("QControlKitXamDemo.iOS")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -0,0 +1,142 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9A10344E-F9FB-4319-9665-CB7E78FCF4F4}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{6143fdea-f3c2-4a09-aafa-6e230626515e}</TemplateGuid>
<OutputType>Exe</OutputType>
<RootNamespace>QControlKitXamDemo.iOS</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>QControlKitXamDemo.iOS</AssemblyName>
<MtouchEnableSGenConc>true</MtouchEnableSGenConc>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<ProvisioningType>automatic</ProvisioningType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>None</MtouchLink>
<MtouchDebug>true</MtouchDebug>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhone\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>None</MtouchLink>
<MtouchInterpreter>-all</MtouchInterpreter>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
</PropertyGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<None Include="Entitlements.plist" />
<None Include="Info.plist" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon1024.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon180.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon167.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon152.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon120.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon87.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon80.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon76.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon60.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon58.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon40.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon29.png">
<Visible>false</Visible>
</ImageAsset>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Icon20.png">
<Visible>false</Visible>
</ImageAsset>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog">
<Version>2.9.0</Version>
</PackageReference>
<PackageReference Include="Serilog.Sinks.Xamarin">
<Version>0.2.0.64</Version>
</PackageReference>
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1364" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\QControlKitXamDemo\QControlKitXamDemo.csproj">
<Project>{20D2D0D8-A518-42DC-BAB8-CF098CDF03C4}</Project>
<Name>QControlKitXamDemo</Name>
</ProjectReference>
</ItemGroup>
</Project>

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

@@ -4,7 +4,7 @@
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="QSharpXamDemo.App">
x:Class="QControlKitXamDemo.App">
<Application.Resources>
</Application.Resources>
@@ -1,8 +1,6 @@
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using Xamarin.Forms;
namespace QSharpXamDemo
namespace QControlKitXamDemo
{
public partial class App : Application
{
@@ -4,7 +4,7 @@
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="QSharpXamDemo.CueListPage">
x:Class="QControlKitXamDemo.CueListPage">
<Grid RowSpacing="0">
<Grid.RowDefinitions>
<RowDefinition Height="200"/>
@@ -1,13 +1,12 @@

using System.Collections.Generic;
using System.Threading.Tasks;
using QSharp;
using QSharpXamDemo.ViewModels;
using Serilog;
using QControlKit;
using QControlKitXamDemo.ViewModels;
using Xamarin.Essentials;
using Xamarin.Forms;
namespace QSharpXamDemo
namespace QControlKitXamDemo
{
public partial class CueListPage : ContentPage
{
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:Class="QSharpXamDemo.MainPage">
x:Class="QControlKitXamDemo.MainPage">
<ListView x:Name="serverListView" GroupDisplayBinding="{Binding name}" IsGroupingEnabled="True">
<ListView.ItemTemplate>
@@ -1,11 +1,11 @@
using System;
using System.ComponentModel;
using Xamarin.Forms;
using QSharp;
using QControlKit;
using System.Collections.ObjectModel;
using System.Collections.Generic;
namespace QSharpXamDemo
namespace QControlKitXamDemo
{
// Learn more about making custom code visible in the Xamarin.Forms previewer
// by visiting https://aka.ms/xamarinforms-previewer
@@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Xamarin.Forms" Version="4.7.0.968" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="CueListPage.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\QControlKit\QControlKit.csproj" />
</ItemGroup>
</Project>
@@ -1,9 +1,9 @@
using QSharp;
using QControlKit;
using Serilog;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Xamarin.Forms;
namespace QSharpXamDemo.ViewModels
namespace QControlKitXamDemo.ViewModels
{
public class QCueViewModel : INotifyPropertyChanged
{