Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.84 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.84 KB

dotnet format .NET Build Publish to NUGET NuGet version

Cameyo Virtual Channel Server SDK

The Cameyo Virtual Channel backend uses Remote Desktop Services Virtual Channels as transport.

Cameyo Virtual Channel Server SDK provides a .NET Standard 2.0 class library for convenient work with virtual channels. It performs two main functions:

  1. getting a list of available virtual channel names;

  2. provides a client to communicate over a channel.

Code sample

Sample usage is in the Sample.cs file.

Build

MSBuild

Use MSBuild command to build SDK:

MSBuild src/VirtualChannelSDK/VirtualChannelSDK.csproj -t:restore,build -p:RestorePackagesConfig=true -p:Configuration=Release -p:OutDir=../../dist

.NET CLI

Use dotnet command to build SDK:

dotnet build src/VirtualChannelSDK/VirtualChannelSDK.csproj -c Release -o ./dist

Contributing

Feel free to send pull-requests! All code changes must be:

  • approved by a project maintainer;
  • pass code analysis (build without warnings and errors).