File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ set -ev; # stop on error
33
44sudo apt-get update
55echo " Installing dependencies required for tests in codegens/csharp-httpclient"
6- # Install latest .net6 .0 sdk
6+ # Install latest .net8 .0 sdk
77pushd ./codegens/csharp-httpclient & > /dev/null;
88 wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
99 sudo dpkg -i packages-microsoft-prod.deb
1010 sudo apt-get install apt-transport-https
1111 sudo apt-get update
12- sudo apt-get install dotnet-sdk-6 .0
13- dotnet new console -o testProject -f net6 .0
12+ sudo apt-get install dotnet-sdk-8 .0
13+ dotnet new console -o testProject -f net8 .0
1414 # no extra packages needed
1515popd & > /dev/null;
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ pushd ./codegens/csharp-restsharp &>/dev/null;
88 sudo dpkg -i packages-microsoft-prod.deb
99 sudo apt-get install apt-transport-https
1010 sudo apt-get update
11- sudo apt-get install dotnet-sdk-6 .0
12- dotnet new console -o testProject -f net6 .0
11+ sudo apt-get install dotnet-sdk-8 .0
12+ dotnet new console -o testProject -f net8 .0
1313 pushd ./testProject & > /dev/null;
1414 dotnet add package RestSharp --version 112.0.0
1515 popd & > /dev/null;
You can’t perform that action at this time.
0 commit comments