Skip to content

Commit c63276f

Browse files
committed
Update dotnet dependencies
Use .NET 8.0 and update packages.
1 parent 70fd1ec commit c63276f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci-dotnet.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
uses: actions/checkout@v4
1111

1212
- name: Setup .NET Core @ Latest
13-
uses: actions/setup-dotnet@v3
13+
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: "6.0.x"
15+
dotnet-version: |
16+
8.0.x
1617
source-url: https://nuget.pkg.github.com/BluEye-Robotics/index.json
1718
env:
1819
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Blueye.Protocol.Protobuf.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6-
<LangVersion>8.0</LangVersion>
6+
<LangVersion>12.0</LangVersion>
77
<PackageId>Blueye.Protocol.Protobuf</PackageId>
88
<VersionPrefix>4.6.0</VersionPrefix>
99
<Company>Blueye Robotics AS</Company>
@@ -13,12 +13,12 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Google.Protobuf" Version="3.28.2" />
17-
<PackageReference Include="Google.Protobuf.Tools" Version="3.28.2">
16+
<PackageReference Include="Google.Protobuf" Version="3.28.3" />
17+
<PackageReference Include="Google.Protobuf.Tools" Version="3.28.3">
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
<PrivateAssets>all</PrivateAssets>
2020
</PackageReference>
21-
<PackageReference Include="Grpc.Tools" Version="2.66.0">
21+
<PackageReference Include="Grpc.Tools" Version="2.67.0">
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
<PrivateAssets>all</PrivateAssets>
2424
</PackageReference>

0 commit comments

Comments
 (0)