mixpanel-csharp 6.0.0

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

// Install mixpanel-csharp as a Cake Tool
#tool nuget:?package=mixpanel-csharp&version=6.0.0

Description

An open source Mixpanel .NET integration library that supports complete Mixpanel API.

Sample usage for track message

var mc = new MixpanelClient("e3bc4100330c35722740fb8c6f5abddc");
await mc.TrackAsync("Level Complete", new {
    DistinctId = "12345",
    LevelNumber = 5,
    Duration = TimeSpan.FromMinutes(1)
});

This will send the following JSON to https://api.mixpanel.com/track/:

{
  "event": "Level Complete",
  "properties": {
    "token": "e3bc4100330c35722740fb8c6f5abddc",
    "distinct_id": "12345",
    "LevelNumber": 5,
    "$duration": 60
  }
}

Sample usage for profile message

var mc = new MixpanelClient("e3bc4100330c35722740fb8c6f5abddc");
await mc.PeopleSetAsync(new {
    DistinctId = "12345",   
    Name = "Darth Vader",    
    Kills = 215
});

This will send the following JSON to https://api.mixpanel.com/engage/:

{
    "$token": "e3bc4100330c35722740fb8c6f5abddc",
    "$distinct_id": "12345",    
    "$set": {       
        "$name": "Darth Vader",      
        "Kills": 215
    }
}

Project URL

https://github.com/eealeivan/mixpanel-csharp

License

mixpanel-csharp is licensed under MIT. Refer to LICENSE for more information.

Product 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on mixpanel-csharp:

Package Downloads
SIL.DesktopAnalytics The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Wrapper around segment.com's Analytics.net specifically for desktop apps (instead of servers).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.0 147,935 10/10/2022
5.1.0 90,404 7/7/2022
5.0.0 926,651 3/8/2019
4.0.1 184,885 8/16/2017
4.0.0 7,380 6/25/2017
3.0.0 18,155 10/26/2016
2.1.0 13,741 8/26/2015
2.0.0 1,853 8/8/2015
1.0.0 2,315 3/23/2015

- Sign Mixpanel assembly with a strong name
     - Update minimal supported versions to .NET Framework 4.6.1 (net461) and .NET Standard 2.0 (netstandard2.0)
     - Remove all synchronous methods from (I)MixpanelClient
     - Add IgnoreAlias parameter to PeopleDeleteAsync methods
     - Add CancellationToken parameter to all asynchronous methods in (I)MixpanelClient