Files
quantconnect--lean/Common/Properties/AssemblyInfo.cs
Michael Handschuh 36311be93f Remove ISignal, add Signal.GeneratedTimeUtc
This abstraction point is completely unwarranted. The signal object is really
just a DTO and it's extensible as it is currently defined. This also allows us
to enforce certain behaviors, such as internal set of GeneratedTimeUtc.

Removes GeneratedTimeUtc from the result object as it's now directly on the signal.
2017-12-12 11:57:03 -05:00

46 lines
1.9 KiB
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("QuantConnect.Common")]
//[assembly: AssemblyDescription("")]
//[assembly: AssemblyConfiguration("")]
//[assembly: AssemblyCompany("")]
//[assembly: AssemblyProduct("QuantConnect.Common")]
//[assembly: AssemblyCopyright("Copyright © 2015")]
//[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("94687ba0-0b5f-43f7-a911-83b5a89651cf")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
// some things we want to expose to other parts of the engine but to not allow
// algorithms to have access. this certainly isn't the ideal, but we'd like
// to not compile break existing user algorithm's, but instead allow them to
// throw the exception in a backtest and see how to use the new order system.
[assembly: InternalsVisibleTo("QuantConnect.Algorithm.Framework")]
[assembly: InternalsVisibleTo("QuantConnect.Brokerages")]
[assembly: InternalsVisibleTo("QuantConnect.Lean.Engine")]
[assembly: InternalsVisibleTo("QuantConnect.Tests")]