Skip to content

Commit

Permalink
Just target .net9 for everything
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoust committed Nov 15, 2024
1 parent c47f1fd commit 4c83a0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ImportBuddy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
release_name="ImportBuddy-$tag-${{ matrix.target }}"
# Build everything
dotnet publish tools/ImportBuddy/source/ImportBuddy/ImportBuddy.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name" --self-contained true
dotnet publish tools/ImportBuddy/source/ImportBuddy/ImportBuddy.sln --runtime "${{ matrix.target }}" -c Release -o "$release_name" --self-contained true --framework net9.0
# Pack files
if [ "${{ matrix.target }}" == "win-x64" ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 4c83a0e

Please sign in to comment.