File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
20
20
with :
21
21
fetch-depth : 0
22
22
23
- - name : Install .NET 7 .0
23
+ - name : Install .NET 8 .0
24
24
uses : actions/setup-dotnet@v3
25
25
with :
26
- dotnet-version : ' 7 .0.x'
26
+ dotnet-version : ' 8 .0.x'
27
27
28
28
- name : Build and Test (Debug)
29
29
run : dotnet test src -c Debug
32
32
if : github.event_name == 'push'
33
33
shell : bash
34
34
run : |
35
- ./src/dotnet-releaser/bin/Debug/net7 .0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml
35
+ ./src/dotnet-releaser/bin/Debug/net8 .0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<RootNamespace >DotNetReleaser</RootNamespace >
6
6
<AssemblyName >dotnet-releaser</AssemblyName >
7
7
<Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments