From 59b099eed7158aa25436423942679b69eef277e8 Mon Sep 17 00:00:00 2001 From: Martin-Molinero Date: Tue, 3 May 2022 13:31:13 -0300 Subject: [PATCH 1/2] Update to net6 --- DataProcessing/DataProcessing.csproj | 6 +++--- DataQueueHandlers/DataQueueHandlers.csproj | 6 +++--- QuantConnect.DataSource.csproj | 9 +++------ tests/Tests.csproj | 6 +++--- 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/DataProcessing/DataProcessing.csproj b/DataProcessing/DataProcessing.csproj index 2185cd8..7ccc856 100644 --- a/DataProcessing/DataProcessing.csproj +++ b/DataProcessing/DataProcessing.csproj @@ -2,19 +2,19 @@ Exe - net5.0 + net6.0 process false + + - - diff --git a/DataQueueHandlers/DataQueueHandlers.csproj b/DataQueueHandlers/DataQueueHandlers.csproj index 8da951a..e83eaba 100644 --- a/DataQueueHandlers/DataQueueHandlers.csproj +++ b/DataQueueHandlers/DataQueueHandlers.csproj @@ -1,21 +1,21 @@ - net5.0 + net6.0 QuantConnect.DataSource.DataQueueHandlers QuantConnect.DataSource.DataQueueHandlers.TiingoNews false + + - - diff --git a/QuantConnect.DataSource.csproj b/QuantConnect.DataSource.csproj index 4bbaeff..8034ac3 100644 --- a/QuantConnect.DataSource.csproj +++ b/QuantConnect.DataSource.csproj @@ -1,7 +1,7 @@ - net5.0 + net6.0 QuantConnect.DataSource QuantConnect.DataSource.TiingoNews bin\$(Configuration) @@ -10,6 +10,8 @@ + + @@ -36,9 +38,4 @@ - - - - - diff --git a/tests/Tests.csproj b/tests/Tests.csproj index 0f50665..927ce9e 100644 --- a/tests/Tests.csproj +++ b/tests/Tests.csproj @@ -1,6 +1,6 @@ - net5.0 + net6.0 QuantConnect.DataLibrary.Tests false @@ -13,8 +13,8 @@ - - + + all From 51a79d9f0552f0da9c6f317a938d41e7c67b777e Mon Sep 17 00:00:00 2001 From: Martin-Molinero Date: Tue, 3 May 2022 16:24:35 -0300 Subject: [PATCH 2/2] Fix CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 349f1be..ae5c948 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,4 +40,4 @@ jobs: run: dotnet build ./tests/Tests.csproj /p:Configuration=Release /v:quiet /p:WarningLevel=1 - name: Run Tests - run: dotnet test ./tests/bin/Release/net5.0/Tests.dll + run: dotnet test ./tests/bin/Release/net6.0/Tests.dll