Cherwell.Api 1.0.30

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

// Install Cherwell.Api as a Cake Tool
#tool nuget:?package=Cherwell.Api&version=1.0.30

Cherwell.Api

Nuget Nuget License: MIT Codacy Badge

This project implements access to the v1 Cherwell API

See the contribution guide for more information regarding contributing to this project

To use the Cherwell API nuget package:

Visual Studio

  1. Open your project in Visual Studio
  2. Right-click on the project and click "Manage Nuget packages"
  3. Find the package "Cherwell.Api" - install the latest version

Example code (C# 10.0):

using Cherwell.Api;
using System;
using System.Threading.Tasks;

namespace My.Project
{
	public static class Program
	{
		public static async Task Main()
		{
			using var cherwellClient = new CherwellClient(new CherwellClientOptions
			{
				BaseAddress = "xxxxxxx",
				Username = "0123456789abcdef0123456789abcdef01234567",
				Password = "0123456789abcdef0123456789abcdef01234567",
				ClientId = "0123456789abcdef0123456789abcdef01234567"
			});

			var views = await cherwellClient
				.Core
				.GetViewsAsync()
				;
		}
	}
}

API Documentation

The Cherwell API documentation can be found here:

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 was computed.  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

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.30 40 4/18/2024
1.0.29 42 4/18/2024
1.0.25 270 9/23/2023
1.0.23 110 9/23/2023
1.0.22 121 9/23/2023
1.0.21 118 9/23/2023
1.0.14 387 5/17/2023
1.0.13 171 4/28/2023
1.0.10 321 2/15/2023
1.0.9 254 2/13/2023
1.0.8 384 11/30/2022
1.0.7 319 11/22/2022
1.0.3 315 11/20/2022
1.0.2 325 11/20/2022
0.2.4 387 11/3/2022
0.2.2 416 9/1/2022
0.2.1 393 9/1/2022
0.1.29-alpha 140 6/30/2022
0.1.12-alpha 173 6/28/2022
0.1.10-alpha 157 6/28/2022
0.1.3-alpha 127 6/24/2022
0.1.0-alpha 146 6/24/2022

Code tidy