Skip to content

Commit

Permalink
dotnet 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Molinero committed Dec 12, 2024
1 parent e230740 commit bf97cd2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<NoWarn>$(NoWarn);NU1605</NoWarn>
<NoWarn>$(NoWarn);NU1605</NoWarn>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>

<IsPackable>false</IsPackable>
<Copyright>Copyright © 2024</Copyright>
Expand All @@ -19,10 +19,9 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1">
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
</ItemGroup>
Expand All @@ -37,8 +36,8 @@
<Content Include="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Reference Include="Alpaca.Markets">
<HintPath>..\QuantConnect.AlpacaBrokerage\Alpaca.Markets.dll</HintPath>
</Reference>
</ItemGroup>
<Reference Include="Alpaca.Markets">
<HintPath>..\QuantConnect.AlpacaBrokerage\Alpaca.Markets.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<NoWarn>$(NoWarn);NU1605</NoWarn>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Product>QuantConnect.Brokerages.Alpaca</Product>
<AssemblyName>QuantConnect.Brokerages.Alpaca</AssemblyName>
<RootNamespace>QuantConnect.Brokerages.Alpaca</RootNamespace>
Expand Down

0 comments on commit bf97cd2

Please sign in to comment.