RemoteViewing 1.1.0

dotnet add package RemoteViewing --version 1.1.0
                    
NuGet\Install-Package RemoteViewing -Version 1.1.0
                    
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="RemoteViewing" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RemoteViewing" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="RemoteViewing" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RemoteViewing --version 1.1.0
                    
#r "nuget: RemoteViewing, 1.1.0"
                    
#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.
#:package RemoteViewing@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RemoteViewing&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=RemoteViewing&version=1.1.0
                    
Install as a Cake Tool

RemoteViewing is a .NET-native VNC client and server library.

It supports Raw, Hextile, Copyrect, and Zlib encodings, and includes a Windows Forms control to make embedding VNC in your program extremely easy.

RemoteViewing uses the BSD license.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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.1.0 197 10/14/2025
1.0.1 129 10/9/2025
1.0.0 156 9/24/2025
0.9.4 4,062 11/11/2018
0.9.1 7,402 5/11/2013
0.9.0 1,611 4/22/2013

1.1.0 (October 14, 2025):
 Added support for 8-bit color (2-3-3 RGB) to the VNC server. It's not pretty, but it is bandwidth-efficient.
 Added Zlib support to the VNC server. Previously RemoteViewing was only useful on a LAN. With this change, it should be useful over the Internet.
 Fixed an occasional crash on exit in the Windows Forms VNC control.
 On 64-bit platforms, the VNC server is now another 25% faster when the desktop is idle.
 The VNC server now uses a steady amount of RAM, even when updating the screen quickly. As a result, the garbage collector no longer causes CPU spikes.
 
1.0.1 (October 9, 2025):
 Added (very) basic Hextile support to the VNC server.
 Fixed a lock-up in the VNC server.
 The VNC server is now 2.5X faster at updating frames.
 Started on bandwidth statistics support. This is not very accurate yet.
 
1.0.0 (September 24, 2025):
 Added support for 16-bit color.
 Fixed mouse coordinate scaling on the Windows Forms control.
 
0.9.4 (November 11, 2018):
 Fixed the VNC server behavior when an incorrect password is supplied.

0.9.3 (November 2, 2017):
 Added support for palettized color and 32-bit color.

0.9.2 (October 23, 2016):
 Added a SizeMode property to the Windows Forms control.

0.9.1 (May 11, 2013):
 Added a preliminary VNC server implementation.
 Added clipboard sharing support.
 The underlying client is now free-threaded, and the Windows Forms control handles marshaling.
 The download at http://software.seekye.com/remoteviewing includes samples if you need them.

0.9.0 (April 22, 2013):
 Test version. Still needs cleanup and better keyboard handling.