.NET tracker setup - OXYGEN-MARKET/oxygen-market.github.io GitHub Wiki
HOME > SNOWPLOW SETUP GUIDE > Step 2: Setup a Tracker > .NET tracker
- 1 Overview
- 2 Tracker compatibility
- 3 Setup
- 4 Next steps
The Snowplow .NET Tracker is written in C# and lets you add analytics to your .NET applications.
Version 1.0.0+ marks the conversion of the core library to .NET Standard 1.4. This core (Snowplow.Tracker
) is directly compatible with these platforms.
We have also published a Portable Class Library (PCL) wrapper providing extra features for Xamarin users. This is called Snowplow.Tracker.PlatformExtensions
.
To add the .NET Tracker as a dependency to your project, install it in the Visual Studio Package Manager Console using NuGet:
Install-Package Snowplow.Tracker
To add the .NET Tracker as a dependency to your project, install it in the Visual Studio Package Manager Console using NuGet:
Install-Package Snowplow.Tracker.PlatformExtensions
Remember to add an assembly reference to the .NET Tracker to your project.
Once you have set up the .NET Tracker, read the API documentation and you will be ready to start tracking your own events.