Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
Target .NET 9 (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Nov 25, 2024
1 parent 3cf0255 commit 29eba3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
dotnet-version: '9.x'

- name: Install dependencies
run: dotnet restore --runtime ${{ env.DOTNET_RID }} --verbosity detailed
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- There is nothing else to import. -->

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion src/FaluCli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
[$"Logging:LogLevel:{typeof(WebsocketHandler).FullName}"] = verbose ? "Trace" : "Information",
[$"Logging:LogLevel:{parseResult.CommandResult.Command.GetType().FullName}"] = verbose ? "Trace" : "Information",

// See https://docs.microsoft.com/en-us/aspnet/core/fundamentals/http-requests?view=aspnetcore-8.0#logging
// See https://docs.microsoft.com/en-us/aspnet/core/fundamentals/http-requests?view=aspnetcore-9.0#logging
["Logging:LogLevel:System.Net.Http.HttpClient"] = "None", // removes all we do not need
["Logging:LogLevel:System.Net.Http.HttpClient.Oidc.ClientHandler"] = verbose ? "Trace" : "Warning", // add what we need
[$"Logging:LogLevel:System.Net.Http.HttpClient.{nameof(FaluCliClient)}.ClientHandler"] = verbose ? "Trace" : "Warning", // add what we need
Expand Down

0 comments on commit 29eba3e

Please sign in to comment.