Skip to content

Commit 941a349

Browse files
committed
.Net 8.0
1 parent dacfaef commit 941a349

17 files changed

Lines changed: 20 additions & 24 deletions

File tree

.github/workflows/build_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET Core
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: 7.0.x
25+
dotnet-version: 8.0.x
2626

2727
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
2828
- name: Setup MSBuild.exe

.github/workflows/build_net_core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET Core
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: 7.0.x
25+
dotnet-version: 8.0.x
2626

2727
- name: Install dependencies
2828
run: dotnet restore PullRequestQuantifier.sln

.github/workflows/feedback_service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: 8.0.x
2121
- name: Install dependencies
2222
run: dotnet restore src/PullRequestQuantifier.Feedback.Service/PullRequestQuantifier.Feedback.Service.csproj
2323
env:

.github/workflows/github_client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: 8.0.x
2121
- name: Install dependencies
2222
run: dotnet restore src/Clients/PullRequestQuantifier.GitHub.Client/PullRequestQuantifier.GitHub.Client.csproj
2323
env:

.github/workflows/repository_service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: 8.0.x
2121
- name: Install dependencies
2222
run: dotnet restore src/PullRequestQuantifier.Repository.Service/PullRequestQuantifier.Repository.Service.csproj
2323
env:

.github/workflows/vscode_client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET Core
1919
uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: 7.0.x
21+
dotnet-version: 8.0.x
2222
- name: Install dependencies
2323
run: dotnet restore src/Clients/PullRequestQuantifier.VsCode.Client/PullRequestQuantifier.VsCode.Client.csproj
2424
env:

src/Clients/PullRequestQuantifier.Client/PullRequestQuantifier.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageReference Include="System.Text.Json" Version="9.0.5" />
1515
<PackageReference Include="System.IO.Abstractions" Version="21.2.1" />
1616
<PackageReference Include="Ignore" Version="0.1.50" />
17-
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
17+
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
1818
<PackageReference Include="YamlDotNet" Version="13.7.1" />
1919
<PackageReference Include="Stubble.Core" Version="1.10.8" />
2020
</ItemGroup>

src/Clients/PullRequestQuantifier.GitHub.Client/PullRequestQuantifier.GitHub.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
1313
<PackageReference Include="GitHubJwt" Version="0.0.6" />
1414
<PackageReference Include="Octokit" Version="8.1.1" />
15-
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
15+
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

src/Clients/PullRequestQuantifier.Local.Client/PullRequestQuantifier.Local.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
10+
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
1111
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="7.0.0" />
1212
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
1313
</ItemGroup>

src/PullRequestQuantifier.Abstractions/PullRequestQuantifier.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Ignore" Version="0.1.50" />
13-
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
13+
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
1414
<PackageReference Include="YamlDotNet" Version="13.7.1" />
1515
<PackageReference Include="System.Text.Json" Version="9.0.5" />
1616
</ItemGroup>

0 commit comments

Comments
 (0)