Skip to content

Commit 261fa2a

Browse files
committed
Upgrade to .NET9
1 parent ec2b619 commit 261fa2a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/url_check_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
cd "URL Test"
2424
dotnet build /p:Configuration=Release /v:quiet /p:WarningLevel=1 URLTest.csproj
25-
dotnet run bin/Debug/net6.0/process.dll
25+
dotnet run bin/Debug/net9.0/process.dll
2626
continue-on-error: true
2727

2828
- name: Push to Branch

06 LEAN Engine/02 Contributions/01 Datasets/04 Rendering Data/00 Rendering Data with Python/02 Using Processing Framework.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@
6161
Market.USA, True, map_file_provider, csv_date)</pre>
6262
</div>
6363

64-
<li>Copy the <span class="public-file-name">process.sample.py</span> script to the <span class="public-file-name">DataProcessing / bin / debug / net6.0</span> directory.</li>
64+
<li>Copy the <span class="public-file-name">process.sample.py</span> script to the <span class="public-file-name">DataProcessing / bin / debug / net9.0</span> directory.</li>
6565
<p>You need to place the script under the <span class="public-file-name">bin</span> directory so that LEAN's packages dlls are correctly loaded for the <code>CLRImports</code>.</p>
6666
<div class="cli section-example-container">
67-
<pre>$ cp process.sample.py DataProcessing/bin/Debug/net6.0</pre>
67+
<pre>$ cp process.sample.py DataProcessing/bin/Debug/net9.0</pre>
6868
</div>
6969

70-
<li>Run the <span class="public-file-name">DataProcessing / bin / debug / net6.0 / process.sample.py</span> script to populate the <span class="public-directory-name">Lean.DataSource.&lt;vendorNameDatasetName&gt; / output</span> directory and the <span class="public-directory-name">output</span> directory in your machine's root directory.</p>
70+
<li>Run the <span class="public-file-name">DataProcessing / bin / debug / net9.0 / process.sample.py</span> script to populate the <span class="public-directory-name">Lean.DataSource.&lt;vendorNameDatasetName&gt; / output</span> directory and the <span class="public-directory-name">output</span> directory in your machine's root directory.</p>
7171
<div class="cli section-example-container">
72-
<pre>$ cd DataProcessing/bin/debug/net6.0/
72+
<pre>$ cd DataProcessing/bin/debug/net9.0/
7373
$ python process.sample.py</pre>
7474
</div>
7575
</ol>

06 LEAN Engine/02 Contributions/01 Datasets/05 Testing Data Models/02 Run Demonstration Algorithms.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<li>In the Add Existing Item window, click the <span class='public-file-name'>Lean.DataSource.&lt;vendorNameDatasetName&gt; / &lt;vendorNameDatasetName&gt;Algorithm.cs</span> file and then click <span class='button-name'>Add</span>.</li>
2828
<li>In the Solution Explorer panel, right-click <span class='public-file-name'>QuantConnect.Algorithm.CSharp</span> and then click <span class='menu-name'>Add > Project Reference...</span>.</li>
2929
<li>In the Reference Manager window, click <span class='button-name'>Browse…</span>.</li>
30-
<li>In the Select the files to reference… window, click the <span class='public-file-name'>Lean.DataSource.&lt;vendorNameDatasetName&gt; / bin / Debug / net6.0 / QuantConnect.DataSource.&lt;vendorNameDatasetName&gt;.dll</span> file and then click <span class='button-name'>Add</span>.</li>
30+
<li>In the Select the files to reference… window, click the <span class='public-file-name'>Lean.DataSource.&lt;vendorNameDatasetName&gt; / bin / Debug / net9.0 / QuantConnect.DataSource.&lt;vendorNameDatasetName&gt;.dll</span> file and then click <span class='button-name'>Add</span>.</li>
3131
<p>The Reference Manager window displays the <span class='public-file-name'>QuantConnect.DataSource.&lt;vendorNameDatasetName&gt;.dll</span> file with the check box beside it enabled.</p>
3232
<li>Click <span class='button-name'>OK</span>.</li>
3333
<p>The Solution Explorer panel adds the <span class='public-file-name'>QuantConnect.DataSource.&lt;vendorNameDatasetName&gt;.dll</span> file under <span class='menu-name'>QuantConnect.Algorithm.CSharp > Dependencies > Assemblies</span>.</p>

06 LEAN Engine/02 Contributions/01 Datasets/05 Testing Data Models/03 Run Unit Tests.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<p>In the <span class='public-file-name'>Lean.DataSource.&lt;vendorNameDatasetName&gt; / &lt;vendorNameDatasetName&gt;Tests.cs</span> file, define the <code>CreateNewInstance</code> method to return an instance of your <code>DataSource</code> class and then execute the following commands to run the unit tests:</p>
44
<div class="cli section-example-container">
55
<pre>$ dotnet build tests/Tests.csproj
6-
$ dotnet test tests/bin/Debug/net6.0/Tests.dll</pre>
6+
$ dotnet test tests/bin/Debug/net9.0/Tests.dll</pre>
77
</div>

URL Test/URLTest.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyName>process</AssemblyName>
66
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
77
</PropertyGroup>

0 commit comments

Comments
 (0)