10 lines
502 B
C#
10 lines
502 B
C#
using System.Reflection;
|
|
|
|
// common assembly attributes
|
|
[assembly: AssemblyCopyright("QuantConnect™ 2018. All Rights Reserved")]
|
|
[assembly: AssemblyCompany("QuantConnect Corporation")]
|
|
[assembly: AssemblyVersion("2.5")]
|
|
|
|
// Configuration used to build the assembly is by defaulting 'Debug'.
|
|
// To create a package using a Release configuration, -properties Configuration=Release on the command line must be use.
|
|
// source: https://docs.microsoft.com/en-us/nuget/reference/nuspec#replacement-tokens |