Skip to content

Commit

Permalink
Feature dotnet9 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Molinero authored Dec 23, 2024
1 parent c7a1e0b commit 1fac021
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set up .NET 6
- name: Set up .NET 9
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
dotnet-version: '9.0.x'

- name: Build
run: dotnet build
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11

- name: Set up Node.js
uses: actions/setup-node@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\QuantConnectStubsGenerator\QuantConnectStubsGenerator.csproj"/>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\QuantConnectStubsGenerator\QuantConnectStubsGenerator.csproj"/>
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework.Legacy.ClassicAssert" Alias="Assert" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions QuantConnectStubsGenerator/QuantConnectStubsGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.12" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
<PackageReference Include="QuikGraph" Version="2.3.0" />
<PackageReference Include="QuantConnect.pythonnet" Version="2.0.35" />
<PackageReference Include="QuantConnect.pythonnet" Version="2.0.41" />
</ItemGroup>
<ItemGroup>
<None Update="log4net.config">
Expand Down

0 comments on commit 1fac021

Please sign in to comment.