Tango/Software/Visual_Studio/Tango.Insights/InsightsListener.cs, branch software Twine softwares http://git.tvcloud.fr/Tango/atom/Software/Visual_Studio/Tango.Insights/InsightsListener.cs?h=software 2020-08-23T05:44:31Z Fixed issue with insights file datetime utc. 2020-08-23T05:44:31Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-23T05:44:31Z urn:sha1:02ae577faa0bd4938507061d603e4f9447e2b64f added insights application exception/crash. added remote actions service. fixed issue with LiteDB hang on application start/exit. reduced insights listener empty frames. Fixed several issues. 2020-08-19T15:53:57Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-19T15:53:57Z urn:sha1:b0255ed4ae2827801d13cec175e57108a0666db9 Implemented insights machine statuses. 2020-08-19T01:27:28Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-19T01:27:28Z urn:sha1:334ecf334ea1d69c948e793c06f6182f2b2415b3 DB: Changed TechMonitors HeadZone5_6HeaterCurrent => HeadZone56HeaterCurrent 2020-08-18T22:45:02Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-18T22:45:02Z urn:sha1:4e216a0ca8ad3608b845fa445b73034e1a67b8af Working on insights and insights annotations. Added insights events. Added insights settings to PPC advanced settings. Added compression support for transport adapters. Implemented compression support on TCP/SignalR/WebRTC. Added Compression flag to ExternalBridge discovery packet. Added compression setting to PPC advanced settings. Refactored transport layer to use Bson instead of Json for Generic Messages. Added all SciChart referenced assemblies. Registered EF Extensions license for FSE. Added support for FSE PushTask notification cancel button. Working on insights... 2020-08-16T22:14:07Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-16T22:14:07Z urn:sha1:f4c418cced4c6fb25ec5d4cb2bcb4ce0f766efd0 Working on insights... 2020-08-16T14:05:56Z Roy Ben Shabat Roy.mail.net@gmail.com 2020-08-16T14:05:56Z urn:sha1:e47e602cd61bcca8eb7fbef40dc4aa8798510ccc
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Protobuf
{
    /// <summary>
    /// Represents an enumeration for available protobuf compiler languages.
    /// </summary>
    public enum CompilerLanguage
    {
        [Description("C#")]
        CSharp,
        [Description("Java")]
        Java,
        [Description("Java Nano")]
        JavaNano,
        [Description("C++")]
        CPP,
        [Description("C")]
        C,
        [Description("Embedded C")]
        EmbeddedC,
        [Description("JavaScript")]
        JS,
        [Description("Python")]
        Python,
        [Description("PHP")]
        PHP,
        [Description("Ruby")]
        Ruby,
    }
}