79a77d4e1d
Feature/LocalServer * Major refactor. Switching over to a local server hub style driver allowing multiple programs to control the telescope at one time without the need for the POTH Hub * Unified the setup dialog * Implemented shared serial port, Both Telescope and Driver can connect at the same time. * Ported the focuser implementation from the non server based version. * Ported the telescope driver code. * Fixed problem with # not being stripped from the returned string ends. Fixed issue with RA being returned as degress rather than hours. * Telescope passes validation * Added a lock around the focuser move. * Reimplemented CommandBlind and CommandString * Corrected version information * Removed the Altitude support as there's a bug in the Autostar and Audiostar firmware
28 lines
958 B
C#
28 lines
958 B
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
[assembly: AssemblyTitle("ASCOM Meade.net server")]
|
|
[assembly: AssemblyDescription("ASCOM multi-interface server for Meade.net")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("cjdawson.com")]
|
|
[assembly: AssemblyProduct("")]
|
|
[assembly: AssemblyCopyright("Copyright © 2019 cjdawson.com")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Version information for an assembly consists of the following four values:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
[assembly: AssemblyVersion("0.4.0.0")]
|
|
[assembly: AssemblyFileVersion("0.4.0.0")]
|
|
|
|
[assembly: ComVisibleAttribute(false)]
|