Skip to content

Commit

Permalink
refactor: IQFeed-Donwloader/Tests.csproj files
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Jan 22, 2024
1 parent 9c695ee commit 63b222b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net6.0</TargetFramework>
<Product>QuantConnect.IQFeed</Product>
<AssemblyName>process</AssemblyName>
<Product>QuantConnect.IQFeed.Downloader</Product>
<AssemblyName>QuantConnect.IQFeed.Downloader</AssemblyName>
<RootNamespace>QuantConnect.IQFeed.Downloader</RootNamespace>
<AssemblyTitle>QuantConnect.IQFeed.Downloader</AssemblyTitle>
Expand All @@ -16,6 +15,17 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="QuantConnect.Lean.Engine" Version="2.5.*" />
</ItemGroup>
Expand Down
10 changes: 10 additions & 0 deletions QuantConnect.IQFeed.Tests/QuantConnect.IQFeed.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<TestProjectType>UnitTest</TestProjectType>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Product>QuantConnect.IQFeed.Tests</Product>
<AssemblyName>QuantConnect.IQFeed.Tests</AssemblyName>
<RootNamespace>QuantConnect.IQFeed.Tests</RootNamespace>
<AssemblyTitle>QuantConnect.IQFeed.Tests</AssemblyTitle>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.9.4" />
Expand Down

0 comments on commit 63b222b

Please sign in to comment.