chore: import upstream snapshot with attribution
This commit is contained in:
+1523
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,403 @@
|
||||
/*
|
||||
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
||||
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using RestSharp;
|
||||
using QuantConnect.Logging;
|
||||
using System.Threading.Tasks;
|
||||
using System.Net.Http;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text;
|
||||
using System.Collections.Generic;
|
||||
using QuantConnect.Util;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Diagnostics;
|
||||
using System.Net.Sockets;
|
||||
using static QuantConnect.StringExtensions;
|
||||
|
||||
namespace QuantConnect.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// API Connection and Hash Manager
|
||||
/// </summary>
|
||||
public class ApiConnection : IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Authorized client to use for requests.
|
||||
/// </summary>
|
||||
private HttpClient _httpClient;
|
||||
|
||||
/// <summary>
|
||||
/// Authorized client to use for requests.
|
||||
/// </summary>
|
||||
[Obsolete("RestSharp is deprecated and will be removed in a future release. Please use the SetClient method or the request methods that take an HttpRequestMessage")]
|
||||
public RestClient Client { get; set; }
|
||||
|
||||
// Authorization Credentials
|
||||
private readonly string _userId;
|
||||
private readonly string _token;
|
||||
|
||||
private LeanAuthenticator _authenticator;
|
||||
|
||||
/// <summary>
|
||||
/// Create a new Api Connection Class.
|
||||
/// </summary>
|
||||
/// <param name="userId">User Id number from QuantConnect.com account. Found at www.quantconnect.com/account </param>
|
||||
/// <param name="token">Access token for the QuantConnect account. Found at www.quantconnect.com/account </param>
|
||||
public ApiConnection(int userId, string token)
|
||||
: this(userId, token, null)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Create a new Api Connection Class.
|
||||
/// </summary>
|
||||
/// <param name="userId">User Id number from QuantConnect.com account. Found at www.quantconnect.com/account </param>
|
||||
/// <param name="token">Access token for the QuantConnect account. Found at www.quantconnect.com/account </param>
|
||||
/// <param name="baseUrl">The client's base address</param>
|
||||
/// <param name="defaultHeaders">Default headers for the client</param>
|
||||
/// <param name="timeout">The client timeout in seconds</param>
|
||||
public ApiConnection(int userId, string token, string baseUrl = null, Dictionary<string, string> defaultHeaders = null, int timeout = 0)
|
||||
{
|
||||
_token = token;
|
||||
_userId = userId.ToStringInvariant();
|
||||
SetClient(!string.IsNullOrEmpty(baseUrl) ? baseUrl : Globals.Api, defaultHeaders, timeout);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return true if connected successfully.
|
||||
/// </summary>
|
||||
public bool Connected
|
||||
{
|
||||
get
|
||||
{
|
||||
using var request = new HttpRequestMessage(HttpMethod.Get, "authenticate");
|
||||
return TryRequest(request, out AuthenticationResponse response) && response.Success;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current client
|
||||
/// </summary>
|
||||
/// <param name="baseUrl">The client's base address</param>
|
||||
/// <param name="defaultHeaders">Default headers for the client</param>
|
||||
/// <param name="timeout">The client timeout in seconds</param>
|
||||
public void SetClient(string baseUrl, Dictionary<string, string> defaultHeaders = null, int timeout = 0)
|
||||
{
|
||||
if (_httpClient != null)
|
||||
{
|
||||
_httpClient.DisposeSafely();
|
||||
}
|
||||
|
||||
var baseAddress = new Uri($"{baseUrl.TrimEnd('/')}/");
|
||||
#pragma warning disable CA2000 // Dispose objects before losing scope: the client takes ownership of the handler
|
||||
var handler = new SocketsHttpHandler
|
||||
{
|
||||
// fail fast when a connection can't be established instead of consuming the whole request timeout
|
||||
ConnectTimeout = TimeSpan.FromMinutes(1),
|
||||
// recycle pooled connections so DNS/load balancer changes and stale NAT state are picked up
|
||||
PooledConnectionLifetime = TimeSpan.FromMinutes(5)
|
||||
};
|
||||
_httpClient = new HttpClient(handler, disposeHandler: true) { BaseAddress = baseAddress };
|
||||
#pragma warning restore CA2000
|
||||
Client = new RestClient(baseUrl);
|
||||
|
||||
if (defaultHeaders != null)
|
||||
{
|
||||
foreach (var header in defaultHeaders)
|
||||
{
|
||||
_httpClient.DefaultRequestHeaders.Add(header.Key, header.Value);
|
||||
}
|
||||
Client.AddDefaultHeaders(defaultHeaders);
|
||||
}
|
||||
|
||||
if (timeout > 0)
|
||||
{
|
||||
_httpClient.Timeout = TimeSpan.FromSeconds(timeout);
|
||||
Client.Timeout = timeout * 1000;
|
||||
}
|
||||
else
|
||||
{
|
||||
_httpClient.Timeout = Timeout.InfiniteTimeSpan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disposes of the HTTP client
|
||||
/// </summary>
|
||||
public void Dispose()
|
||||
{
|
||||
_httpClient.Dispose();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Place a secure request and get back an object of type T.
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="result">Result object from the </param>
|
||||
/// <returns>T typed object response</returns>
|
||||
[Obsolete("RestSharp is deprecated and will be removed in a future release. Please use the TryRequest(HttpRequestMessage)")]
|
||||
public bool TryRequest<T>(RestRequest request, out T result)
|
||||
where T : RestResponse
|
||||
{
|
||||
var resultTuple = TryRequestAsync<T>(request).SynchronouslyAwaitTaskResult();
|
||||
result = resultTuple.Item2;
|
||||
return resultTuple.Item1;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Place a secure request and get back an object of type T.
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="result">Result object from the </param>
|
||||
/// <param name="timeout">Timeout for the request</param>
|
||||
/// <returns>T typed object response</returns>
|
||||
public bool TryRequest<T>(HttpRequestMessage request, out T result, TimeSpan? timeout = null)
|
||||
where T : RestResponse
|
||||
{
|
||||
var resultTuple = TryRequestAsync<T>(request, timeout).SynchronouslyAwaitTaskResult();
|
||||
result = resultTuple.Item2;
|
||||
return resultTuple.Item1;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Place a secure request and get back an object of type T.
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <param name="request"></param>
|
||||
/// <returns>T typed object response</returns>
|
||||
[Obsolete("RestSharp is deprecated and will be removed in a future release. Please use the TryRequestAsync(HttpRequestMessage)")]
|
||||
public async Task<Tuple<bool, T>> TryRequestAsync<T>(RestRequest request)
|
||||
where T : RestResponse
|
||||
{
|
||||
var responseContent = string.Empty;
|
||||
T result;
|
||||
try
|
||||
{
|
||||
SetAuthenticator(request);
|
||||
|
||||
// Execute the authenticated REST API Call
|
||||
var restsharpResponse = await Client.ExecuteAsync(request).ConfigureAwait(false);
|
||||
|
||||
//Verify success
|
||||
if (restsharpResponse.ErrorException != null)
|
||||
{
|
||||
Log.Error($"ApiConnection.TryRequest({request.Resource}): Error: {restsharpResponse.ErrorException.Message}");
|
||||
return new Tuple<bool, T>(false, null);
|
||||
}
|
||||
|
||||
if (!restsharpResponse.IsSuccessful)
|
||||
{
|
||||
Log.Error($"ApiConnect.TryRequest({request.Resource}): Content: {restsharpResponse.Content}");
|
||||
}
|
||||
|
||||
responseContent = restsharpResponse.Content;
|
||||
result = responseContent.DeserializeJson<T>();
|
||||
|
||||
if (result == null || !result.Success)
|
||||
{
|
||||
Log.Debug($"ApiConnection.TryRequest({request.Resource}): Raw response: '{responseContent}'");
|
||||
return new Tuple<bool, T>(false, result);
|
||||
}
|
||||
}
|
||||
catch (Exception err)
|
||||
{
|
||||
Log.Error($"ApiConnection.TryRequest({request.Resource}): Error: {err.Message}, Response content: {responseContent}");
|
||||
return new Tuple<bool, T>(false, null);
|
||||
}
|
||||
|
||||
return new Tuple<bool, T>(true, result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Place a secure request and get back an object of type T.
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <param name="request"></param>
|
||||
/// <param name="timeout">Timeout for the request</param>
|
||||
/// <returns>T typed object response</returns>
|
||||
public async Task<Tuple<bool, T>> TryRequestAsync<T>(HttpRequestMessage request, TimeSpan? timeout = null)
|
||||
where T : RestResponse
|
||||
{
|
||||
HttpResponseMessage response = null;
|
||||
Stream responseContentStream = null;
|
||||
T result = null;
|
||||
|
||||
// Default to 100 seconds (since we disabled the default client timeout)
|
||||
timeout ??= TimeSpan.FromSeconds(100);
|
||||
|
||||
using var cancellationTokenSource = new CancellationTokenSource(timeout.Value);
|
||||
var stopwatch = Stopwatch.StartNew();
|
||||
try
|
||||
{
|
||||
if (request.RequestUri.OriginalString.StartsWith('/'))
|
||||
{
|
||||
request.RequestUri = new Uri(request.RequestUri.ToString().TrimStart('/'), UriKind.Relative);
|
||||
}
|
||||
|
||||
SetAuthenticator(request);
|
||||
|
||||
// Execute the authenticated REST API Call
|
||||
response = await _httpClient.SendAsync(request, cancellationTokenSource.Token).ConfigureAwait(false);
|
||||
responseContentStream = await response.Content.ReadAsStreamAsync(cancellationTokenSource.Token).ConfigureAwait(false);
|
||||
|
||||
result = responseContentStream.DeserializeJson<T>(leaveOpen: true);
|
||||
|
||||
if (!response.IsSuccessStatusCode)
|
||||
{
|
||||
Log.Error($"ApiConnect.TryRequest({request.RequestUri}): HTTP Error: {(int)response.StatusCode} {response.ReasonPhrase}. " +
|
||||
$"Content: {GetRawResponseContent(responseContentStream)}");
|
||||
}
|
||||
if (result == null || !result.Success)
|
||||
{
|
||||
if (Log.DebuggingEnabled)
|
||||
{
|
||||
Log.Debug($"ApiConnection.TryRequest({request.RequestUri}): Raw response: '{GetRawResponseContent(responseContentStream)}'");
|
||||
}
|
||||
return new Tuple<bool, T>(false, result);
|
||||
}
|
||||
}
|
||||
catch (Exception err)
|
||||
{
|
||||
Log.Error($"ApiConnection.TryRequest({request.RequestUri}): {DescribeError(err, cancellationTokenSource.IsCancellationRequested, stopwatch.ElapsedMilliseconds, timeout.Value)}, Response content: {GetRawResponseContent(responseContentStream)}");
|
||||
return new Tuple<bool, T>(false, null);
|
||||
}
|
||||
finally
|
||||
{
|
||||
response?.DisposeSafely();
|
||||
responseContentStream?.DisposeSafely();
|
||||
}
|
||||
|
||||
return new Tuple<bool, T>(true, result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Builds a diagnostic description of a failed request: distinguishes a timeout from an external
|
||||
/// cancellation, includes how long the request ran, the exception cause chain with socket/http error
|
||||
/// codes and the thread pool state, to help tell network failures apart from process-level issues
|
||||
/// </summary>
|
||||
private static string DescribeError(Exception exception, bool timeoutElapsed, long elapsedMilliseconds, TimeSpan timeout)
|
||||
{
|
||||
try
|
||||
{
|
||||
var builder = new StringBuilder("Error: ");
|
||||
if (exception is OperationCanceledException)
|
||||
{
|
||||
builder.Append(timeoutElapsed
|
||||
? Invariant($"request timed out, no response received (timeout {timeout.TotalSeconds}s)")
|
||||
: "request was canceled before the timeout elapsed");
|
||||
}
|
||||
else
|
||||
{
|
||||
for (var inner = exception; inner != null; inner = inner.InnerException)
|
||||
{
|
||||
if (inner != exception)
|
||||
{
|
||||
builder.Append(" -> ");
|
||||
}
|
||||
builder.Append(inner.GetType().Name);
|
||||
if (inner is HttpRequestException httpException)
|
||||
{
|
||||
builder.Append(Invariant($"[{httpException.HttpRequestError}]"));
|
||||
}
|
||||
else if (inner is SocketException socketException)
|
||||
{
|
||||
builder.Append(Invariant($"[{socketException.SocketErrorCode}]"));
|
||||
}
|
||||
builder.Append(": ").Append(inner.Message);
|
||||
}
|
||||
}
|
||||
builder.Append(Invariant($" after {elapsedMilliseconds}ms. ThreadPool: {ThreadPool.ThreadCount} threads, {ThreadPool.PendingWorkItemCount} pending work items"));
|
||||
return builder.ToString();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
// we are already handling a request failure, describing it should never throw
|
||||
return $"Error: {exception?.Message}";
|
||||
}
|
||||
}
|
||||
|
||||
private static string GetRawResponseContent(Stream stream)
|
||||
{
|
||||
if (stream == null)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
stream.Position = 0;
|
||||
using var reader = new StreamReader(stream, leaveOpen: true);
|
||||
return reader.ReadToEnd();
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
}
|
||||
|
||||
private void SetAuthenticator(RestRequest request)
|
||||
{
|
||||
var base64EncodedAuthenticationString = GetAuthenticatorHeader(out var timeStamp);
|
||||
request.AddOrUpdateHeader("Authorization", $"Basic {base64EncodedAuthenticationString}");
|
||||
request.AddOrUpdateHeader("Timestamp", timeStamp);
|
||||
}
|
||||
|
||||
private void SetAuthenticator(HttpRequestMessage request)
|
||||
{
|
||||
request.Headers.Remove("Authorization");
|
||||
request.Headers.Remove("Timestamp");
|
||||
|
||||
var base64EncodedAuthenticationString = GetAuthenticatorHeader(out var timeStamp);
|
||||
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", base64EncodedAuthenticationString);
|
||||
request.Headers.Add("Timestamp", timeStamp);
|
||||
}
|
||||
|
||||
private string GetAuthenticatorHeader(out string timeStamp)
|
||||
{
|
||||
var newTimeStamp = (int)Time.TimeStamp();
|
||||
var currentAuth = _authenticator;
|
||||
if (currentAuth == null || newTimeStamp - currentAuth.TimeStamp > 7000)
|
||||
{
|
||||
// Generate the hash each request
|
||||
// Add the UTC timestamp to the request header.
|
||||
// Timestamps older than 7200 seconds will not work.
|
||||
var hash = Api.CreateSecureHash(newTimeStamp, _token);
|
||||
var authenticationString = $"{_userId}:{hash}";
|
||||
var base64EncodedAuthenticationString = Convert.ToBase64String(Encoding.UTF8.GetBytes(authenticationString));
|
||||
_authenticator = currentAuth = new LeanAuthenticator(newTimeStamp, base64EncodedAuthenticationString);
|
||||
}
|
||||
|
||||
timeStamp = currentAuth.TimeStampStr;
|
||||
return currentAuth.Base64EncodedAuthenticationString;
|
||||
}
|
||||
|
||||
private class LeanAuthenticator
|
||||
{
|
||||
public int TimeStamp { get; }
|
||||
public string TimeStampStr { get; }
|
||||
public string Base64EncodedAuthenticationString { get; }
|
||||
public LeanAuthenticator(int timeStamp, string base64EncodedAuthenticationString)
|
||||
{
|
||||
TimeStamp = timeStamp;
|
||||
TimeStampStr = timeStamp.ToStringInvariant();
|
||||
Base64EncodedAuthenticationString = base64EncodedAuthenticationString;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
||||
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
using System.Net.Http;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Net.Mime;
|
||||
|
||||
namespace QuantConnect.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// API utility methods
|
||||
/// </summary>
|
||||
public static class ApiUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a POST <see cref="HttpRequestMessage"/> with the specified endpoint and payload as form url encoded content.
|
||||
/// </summary>
|
||||
/// <param name="endpoint">The request endpoint</param>
|
||||
/// <param name="payload">The request payload</param>
|
||||
/// <returns>The POST request</returns>
|
||||
public static HttpRequestMessage CreatePostRequest(string endpoint, IEnumerable<KeyValuePair<string, string>> payload = null)
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Post, endpoint);
|
||||
if (payload != null)
|
||||
{
|
||||
request.Content = new FormUrlEncodedContent(payload);
|
||||
}
|
||||
|
||||
return request;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a POST <see cref="HttpRequestMessage"/> with the specified endpoint and payload as json body
|
||||
/// </summary>
|
||||
/// <param name="endpoint">The request endpoint</param>
|
||||
/// <param name="payload">The request payload</param>
|
||||
/// <param name="jsonSerializerSettings">Settings for the json serializer</param>
|
||||
/// <returns>The POST request</returns>
|
||||
public static HttpRequestMessage CreateJsonPostRequest(string endpoint, object payload = null, JsonSerializerSettings jsonSerializerSettings = null)
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Post, endpoint);
|
||||
if (payload != null)
|
||||
{
|
||||
request.Content = new StringContent(payload as string ?? JsonConvert.SerializeObject(payload, jsonSerializerSettings),
|
||||
new MediaTypeHeaderValue(MediaTypeNames.Application.Json));
|
||||
}
|
||||
|
||||
return request;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System.Reflection;
|
||||
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.Api")]
|
||||
[assembly: AssemblyProduct("QuantConnect.Api")]
|
||||
[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("ce3487da-3d41-47fa-b229-0726c57931f9")]
|
||||
@@ -0,0 +1,53 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<RootNamespace>QuantConnect.Api</RootNamespace>
|
||||
<AssemblyName>QuantConnect.Api</AssemblyName>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
||||
<RestorePackages>true</RestorePackages>
|
||||
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||
<DocumentationFile>bin\$(Configuration)\QuantConnect.Api.xml</DocumentationFile>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<Description>QuantConnect LEAN Engine: API Project - C# SDK for interaction with the QuantConnect.com</Description>
|
||||
<NoWarn>CA1062</NoWarn>
|
||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>$(SelectedOptimization)</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<Target Name="Print" BeforeTargets="Build">
|
||||
<Message Text="SelectedOptimization $(SelectedOptimization)" Importance="high" />
|
||||
</Target>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
||||
<PackageReference Include="NodaTime" Version="3.0.5" />
|
||||
<PackageReference Include="RestSharp" Version="106.12.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\Common\Properties\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Common\QuantConnect.csproj" />
|
||||
<ProjectReference Include="..\Configuration\QuantConnect.Configuration.csproj" />
|
||||
<ProjectReference Include="..\Logging\QuantConnect.Logging.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\LICENSE">
|
||||
<Pack>True</Pack>
|
||||
<PackagePath></PackagePath>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user