Syncromatics.Clients.WaySine 0.0.10-pr-1-feature-initial-commit

This is a prerelease version of Syncromatics.Clients.WaySine.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncromatics.Clients.WaySine --version 0.0.10-pr-1-feature-initial-commit
NuGet\Install-Package Syncromatics.Clients.WaySine -Version 0.0.10-pr-1-feature-initial-commit
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="Syncromatics.Clients.WaySine" Version="0.0.10-pr-1-feature-initial-commit" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncromatics.Clients.WaySine --version 0.0.10-pr-1-feature-initial-commit
#r "nuget: Syncromatics.Clients.WaySine, 0.0.10-pr-1-feature-initial-commit"
#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 Syncromatics.Clients.WaySine as a Cake Addin
#addin nuget:?package=Syncromatics.Clients.WaySine&version=0.0.10-pr-1-feature-initial-commit&prerelease

// Install Syncromatics.Clients.WaySine as a Cake Tool
#tool nuget:?package=Syncromatics.Clients.WaySine&version=0.0.10-pr-1-feature-initial-commit&prerelease

Syncromatics.Clients.WaySine

A .NET library to interact with the WaySine WayManager API to query for sign status updates.

Quickstart

Add the Syncromatics.Clients.WaySine package to your project:

dotnet add package Syncromatics.Clients.WaySine

Then, create a ClientSettings object to specify your server's root URL and use it to initialize a WayManagerClient.

using Syncromatics.Client.WaySine;

var clientSettings = new ClientSettings(serverRootUrl: "http://example.com/");
IWayManagerClient client = new WayManagerClient(clientSettings);

// to get information about every sign available:
var allSigns = await client.GetAllSignsAsync();

// to get information about a particular sign:
const int signId = 42;
var onlyOneSign = await client.GetSignAsync(signId);

Building

Travis NuGet NuGet Pre Release

This library is built using Cake.

Build and test on Windows

build.ps1 -Experimental

Build and test on Linux

./build.sh

Code of Conduct

We are committed to fostering an open and welcoming environment. Please read our code of conduct before participating in or contributing to this project.

Contributing

We welcome contributions and collaboration on this project. Please read our contributor's guide to understand how best to work with us.

License and Authors

Syncromatics Engineering logo Syncromatics Engineering

license GitHub contributors

This software is made available by Syncromatics Engineering under the MIT license.

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 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 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.