From 222bff233602cce0dce4d5a30c042ebecb1c4d10 Mon Sep 17 00:00:00 2001 From: Jhonathan Abreu Date: Wed, 28 Feb 2024 17:06:08 -0400 Subject: [PATCH 1/3] Refactor DLL naming to match all other Lean brokerage projects --- ...antConnect.InteractiveBrokersBrokerage.Tests.csproj | 10 +++++----- ...tConnect.InteractiveBrokersBrokerage.ToolBox.csproj | 8 ++++---- .../Properties/AssemblyInfo.cs | 2 +- .../QuantConnect.InteractiveBrokersBrokerage.csproj | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/QuantConnect.InteractiveBrokersBrokerage.Tests/QuantConnect.InteractiveBrokersBrokerage.Tests.csproj b/QuantConnect.InteractiveBrokersBrokerage.Tests/QuantConnect.InteractiveBrokersBrokerage.Tests.csproj index 982c6c7..3cd0a92 100644 --- a/QuantConnect.InteractiveBrokersBrokerage.Tests/QuantConnect.InteractiveBrokersBrokerage.Tests.csproj +++ b/QuantConnect.InteractiveBrokersBrokerage.Tests/QuantConnect.InteractiveBrokersBrokerage.Tests.csproj @@ -9,10 +9,10 @@ Copyright © 2021 UnitTest bin\$(Configuration)\ - QuantConnect.InteractiveBrokersBrokerage.Tests - QuantConnect.InteractiveBrokersBrokerage.Tests - QuantConnect.InteractiveBrokersBrokerage.Tests - QuantConnect.InteractiveBrokersBrokerage.Tests + QuantConnect.Brokerages.InteractiveBrokers.Tests + QuantConnect.Brokerages.InteractiveBrokers.Tests + QuantConnect.Brokerages.InteractiveBrokers.Tests + QuantConnect.Brokerages.InteractiveBrokers.Tests false @@ -38,7 +38,7 @@ False - + diff --git a/QuantConnect.InteractiveBrokersBrokerage.ToolBox/QuantConnect.InteractiveBrokersBrokerage.ToolBox.csproj b/QuantConnect.InteractiveBrokersBrokerage.ToolBox/QuantConnect.InteractiveBrokersBrokerage.ToolBox.csproj index 7fb1862..083a62b 100644 --- a/QuantConnect.InteractiveBrokersBrokerage.ToolBox/QuantConnect.InteractiveBrokersBrokerage.ToolBox.csproj +++ b/QuantConnect.InteractiveBrokersBrokerage.ToolBox/QuantConnect.InteractiveBrokersBrokerage.ToolBox.csproj @@ -7,10 +7,10 @@ net6.0 Copyright © 2021 bin\$(Configuration)\ - QuantConnect.InteractiveBrokersBrokerage.ToolBox - QuantConnect.InteractiveBrokersBrokerage.ToolBox - QuantConnect.InteractiveBrokersBrokerage.ToolBox - QuantConnect.InteractiveBrokersBrokerage.ToolBox + QuantConnect.Brokerages.InteractiveBrokers.ToolBox + QuantConnect.Brokerages.InteractiveBrokers.ToolBox + QuantConnect.Brokerages.InteractiveBrokers.ToolBox + QuantConnect.Brokerages.InteractiveBrokers.ToolBox false true false diff --git a/QuantConnect.InteractiveBrokersBrokerage/Properties/AssemblyInfo.cs b/QuantConnect.InteractiveBrokersBrokerage/Properties/AssemblyInfo.cs index 6e1f88d..28428ab 100644 --- a/QuantConnect.InteractiveBrokersBrokerage/Properties/AssemblyInfo.cs +++ b/QuantConnect.InteractiveBrokersBrokerage/Properties/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("QuantConnect.InteractiveBrokersBrokerage.Tests")] \ No newline at end of file +[assembly: InternalsVisibleTo("QuantConnect.Brokerages.InteractiveBrokers.Tests")] \ No newline at end of file diff --git a/QuantConnect.InteractiveBrokersBrokerage/QuantConnect.InteractiveBrokersBrokerage.csproj b/QuantConnect.InteractiveBrokersBrokerage/QuantConnect.InteractiveBrokersBrokerage.csproj index b4607d2..0d2f4c3 100644 --- a/QuantConnect.InteractiveBrokersBrokerage/QuantConnect.InteractiveBrokersBrokerage.csproj +++ b/QuantConnect.InteractiveBrokersBrokerage/QuantConnect.InteractiveBrokersBrokerage.csproj @@ -3,10 +3,10 @@ Release AnyCPU net6.0 - QuantConnect.InteractiveBrokersBrokerage - QuantConnect.InteractiveBrokersBrokerage - QuantConnect.InteractiveBrokersBrokerage - QuantConnect.InteractiveBrokersBrokerage + QuantConnect.Brokerages.InteractiveBrokers + QuantConnect.Brokerages.InteractiveBrokers + QuantConnect.Brokerages.InteractiveBrokers + QuantConnect.Brokerages.InteractiveBrokers Library bin\$(Configuration)\ false From a0054f536b2d090859a8b5ce939a57b28c1ac8d2 Mon Sep 17 00:00:00 2001 From: Jhonathan Abreu Date: Thu, 29 Feb 2024 10:46:07 -0400 Subject: [PATCH 2/3] Tweak dll names in GH actions file --- .github/workflows/gh-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 27e8185..16022a7 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -41,6 +41,6 @@ jobs: shell: bash run: | # Build - dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.InteractiveBrokersBrokerage.sln + dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Brokerages.InteractiveBrokers.sln # Run Tests - dotnet test ./QuantConnect.InteractiveBrokersBrokerage.Tests/bin/Release/QuantConnect.InteractiveBrokersBrokerage.Tests.dll + dotnet test ./QuantConnect.InteractiveBrokersBrokerage.Tests/bin/Release/QuantConnect.Brokerages.InteractiveBrokers.Tests.dll From 42833675f67af77eb610287b01b4459e7919ca13 Mon Sep 17 00:00:00 2001 From: Jhonathan Abreu Date: Thu, 29 Feb 2024 11:33:47 -0400 Subject: [PATCH 3/3] Minor fix --- .github/workflows/gh-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 16022a7..e1889eb 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -41,6 +41,6 @@ jobs: shell: bash run: | # Build - dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.Brokerages.InteractiveBrokers.sln + dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.InteractiveBrokersBrokerage.sln # Run Tests dotnet test ./QuantConnect.InteractiveBrokersBrokerage.Tests/bin/Release/QuantConnect.Brokerages.InteractiveBrokers.Tests.dll