Skip to content

Commit

Permalink
Use .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
FrediKats committed May 12, 2024
1 parent d30e5ef commit 62df081
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
fetch-depth: 0

- name: Install .NET 7.0
- name: Install .NET 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'

- name: Build and Test (Debug)
run: dotnet test src -c Debug
Expand All @@ -32,4 +32,4 @@ jobs:
if: github.event_name == 'push'
shell: bash
run: |
./src/dotnet-releaser/bin/Debug/net7.0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml
./src/dotnet-releaser/bin/Debug/net8.0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml
2 changes: 1 addition & 1 deletion src/DotNetReleaser.Tests/DotNetReleaser.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-releaser/dotnet-releaser.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>DotNetReleaser</RootNamespace>
<AssemblyName>dotnet-releaser</AssemblyName>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit 62df081

Please sign in to comment.