From 4841d539fc77953a165d732369e028a9675afb8f Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Thu, 1 Dec 2022 17:24:04 +0000 Subject: [PATCH] Updated project files to .NET 7.0. --- Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj | 2 +- Props.Shop/Adafruit/Props.Shop.Adafruit.csproj | 2 +- Props.Shop/Framework/Props.Shop.Framework.csproj | 2 +- Props.Tests/Props.Tests.csproj | 2 +- Props/.vscode/launch.json | 2 +- Props/Props.csproj | 2 +- environment.yml | 3 +-- scripts/load_shop_modules.py | 2 +- 8 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj b/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj index b027450..1546936 100644 --- a/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj +++ b/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 false diff --git a/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj b/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj index 6b11241..6bb2bdb 100644 --- a/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj +++ b/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 diff --git a/Props.Shop/Framework/Props.Shop.Framework.csproj b/Props.Shop/Framework/Props.Shop.Framework.csproj index da073c9..8b28fba 100644 --- a/Props.Shop/Framework/Props.Shop.Framework.csproj +++ b/Props.Shop/Framework/Props.Shop.Framework.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 diff --git a/Props.Tests/Props.Tests.csproj b/Props.Tests/Props.Tests.csproj index aace45e..0e9952c 100644 --- a/Props.Tests/Props.Tests.csproj +++ b/Props.Tests/Props.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable false diff --git a/Props/.vscode/launch.json b/Props/.vscode/launch.json index 0e2c675..ad23507 100644 --- a/Props/.vscode/launch.json +++ b/Props/.vscode/launch.json @@ -10,7 +10,7 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/net6.0/Props.dll", + "program": "${workspaceFolder}/bin/Debug/net7.0/Props.dll", "args": [], "cwd": "${workspaceFolder}", "stopAtEntry": false, diff --git a/Props/Props.csproj b/Props/Props.csproj index 50f2ae4..f99c99c 100644 --- a/Props/Props.csproj +++ b/Props/Props.csproj @@ -3,7 +3,7 @@ - net6.0 + net7.0 true true false diff --git a/environment.yml b/environment.yml index 23fe16a..9944af0 100644 --- a/environment.yml +++ b/environment.yml @@ -2,6 +2,5 @@ name: props channels: - conda-forge dependencies: - - dotnet-sdk=6.0.* - - dotnet-runtime=6.0.* + - dotnet-sdk=7.0.* - nodejs=18.12.* \ No newline at end of file diff --git a/scripts/load_shop_modules.py b/scripts/load_shop_modules.py index b28ede1..7a2877d 100644 --- a/scripts/load_shop_modules.py +++ b/scripts/load_shop_modules.py @@ -6,7 +6,7 @@ import shutil PROP_SHOP_MODULES_DIR = "./Props.Shop/" PROPS_SHOP_MODULES_DST = "./Props/shops/." -NET_VER = "net6.0" +NET_VER = "net7.0" SHOP_MODULE_GLOB = "output/shop-modules/**/*.{ext}" EXTS = ["deps.json", "dll"]