File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1616 uses : actions/setup-dotnet@v3
1717 with :
1818 dotnet-version : |
19- 3.1.x
2019 6.0.x
2120 7.0.x
21+ 8.0.x
2222 - name : Retore Workload
2323 run : dotnet workload restore
2424 - name : Restore dependencies
Original file line number Diff line number Diff line change 1414 uses : actions/setup-dotnet@v3
1515 with :
1616 dotnet-version : |
17- 3.1.x
1817 6.0.x
1918 7.0.x
19+ 8.0.x
2020 - name : Retore Workload
2121 run : dotnet workload restore
2222 - name : Restore dependencies
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >netcoreapp3.1; net7.0;net8.0;</TargetFrameworks >
3+ <TargetFrameworks >net7.0;net8.0;</TargetFrameworks >
44 <IsPackable >false</IsPackable >
55 <LangVersion >9.0</LangVersion >
66 <UseMaui >true</UseMaui >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >netstandard2; net7.0;net8.0;</TargetFrameworks >
3+ <TargetFrameworks >net7.0;net8.0;</TargetFrameworks >
44 <AssemblyName >Float.Core</AssemblyName >
55 <AssemblyAuthor >Float</AssemblyAuthor >
66 <AssemblyDescription >Common utility code used by Float projects.</AssemblyDescription >
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ async Task<Response> Send(HttpRequestMessage request)
307307
308308 // Verify if a redirect happened.
309309 if ( httpResponse . StatusCode == HttpStatusCode . Moved
310- || httpResponse . StatusCode == HttpStatusCode . MovedPermanently )
310+ || httpResponse . StatusCode == HttpStatusCode . Found )
311311 {
312312 var redirectUrl = httpResponse . Headers . Location ;
313313
You can’t perform that action at this time.
0 commit comments