Skip to content

Commit

Permalink
Merge pull request #97 from jhonabreul/refactor-normalize-namespaces
Browse files Browse the repository at this point in the history
Refactor DLL naming to match all other Lean brokerage projects
  • Loading branch information
jhonabreul authored Feb 29, 2024
2 parents fdbe0ca + 4283367 commit 455d2e7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
# Build
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 QuantConnect.InteractiveBrokersBrokerage.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
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<Copyright>Copyright © 2021</Copyright>
<TestProjectType>UnitTest</TestProjectType>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Product>QuantConnect.InteractiveBrokersBrokerage.Tests</Product>
<AssemblyName>QuantConnect.InteractiveBrokersBrokerage.Tests</AssemblyName>
<RootNamespace>QuantConnect.InteractiveBrokersBrokerage.Tests</RootNamespace>
<AssemblyTitle>QuantConnect.InteractiveBrokersBrokerage.Tests</AssemblyTitle>
<Product>QuantConnect.Brokerages.InteractiveBrokers.Tests</Product>
<AssemblyName>QuantConnect.Brokerages.InteractiveBrokers.Tests</AssemblyName>
<RootNamespace>QuantConnect.Brokerages.InteractiveBrokers.Tests</RootNamespace>
<AssemblyTitle>QuantConnect.Brokerages.InteractiveBrokers.Tests</AssemblyTitle>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

Expand All @@ -38,7 +38,7 @@
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>

<ItemGroup>
<None Remove="config.json" />
<Content Include="config.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright © 2021</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Product>QuantConnect.InteractiveBrokersBrokerage.ToolBox</Product>
<AssemblyName>QuantConnect.InteractiveBrokersBrokerage.ToolBox</AssemblyName>
<RootNamespace>QuantConnect.InteractiveBrokersBrokerage.ToolBox</RootNamespace>
<AssemblyTitle>QuantConnect.InteractiveBrokersBrokerage.ToolBox</AssemblyTitle>
<Product>QuantConnect.Brokerages.InteractiveBrokers.ToolBox</Product>
<AssemblyName>QuantConnect.Brokerages.InteractiveBrokers.ToolBox</AssemblyName>
<RootNamespace>QuantConnect.Brokerages.InteractiveBrokers.ToolBox</RootNamespace>
<AssemblyTitle>QuantConnect.Brokerages.InteractiveBrokers.ToolBox</AssemblyTitle>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("QuantConnect.InteractiveBrokersBrokerage.Tests")]
[assembly: InternalsVisibleTo("QuantConnect.Brokerages.InteractiveBrokers.Tests")]
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net6.0</TargetFramework>
<Product>QuantConnect.InteractiveBrokersBrokerage</Product>
<AssemblyName>QuantConnect.InteractiveBrokersBrokerage</AssemblyName>
<RootNamespace>QuantConnect.InteractiveBrokersBrokerage</RootNamespace>
<AssemblyTitle>QuantConnect.InteractiveBrokersBrokerage</AssemblyTitle>
<Product>QuantConnect.Brokerages.InteractiveBrokers</Product>
<AssemblyName>QuantConnect.Brokerages.InteractiveBrokers</AssemblyName>
<RootNamespace>QuantConnect.Brokerages.InteractiveBrokers</RootNamespace>
<AssemblyTitle>QuantConnect.Brokerages.InteractiveBrokers</AssemblyTitle>
<OutputType>Library</OutputType>
<OutputPath>bin\$(Configuration)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
Expand Down

0 comments on commit 455d2e7

Please sign in to comment.