mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	It is mostly moving the onboarding folders under same directory for more clear project structure.
		
			
				
	
	
	
		
			448 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			448 B
		
	
	
	
	
	
	
	
1. Install the SDK
dotnet add package unleash.client
// If you do not have a json library in your project:
dotnet add package Newtonsoft.Json
2. Initialize Unleash
using Unleash;
var settings = new UnleashSettings()
{
    AppName = "unleash-onboarding-dotnet",
    UnleashApi = new Uri("<YOUR_API_URL>"),
    CustomHttpHeaders = new Dictionary<string, string>()
    {
      {"Authorization","<YOUR_API_TOKEN>" }
    }
};