Skip to content

Commit 4c5b663

Browse files
authored
Merge pull request #188 from mivano/feat/dotnet9
Changed to net 8 and 9 instead of 6 and 8. Updates packages
2 parents b8ef68a + e0c5372 commit 4c5b663

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ jobs:
4141
steps:
4242
- name: Checkout repository
4343
uses: actions/checkout@v4
44-
44+
- name: Setup .NET
45+
uses: actions/setup-dotnet@v4
46+
with:
47+
dotnet-version: |
48+
8.0.x
49+
9.0.x
4550
# Initializes the CodeQL tools for scanning.
4651
- name: Initialize CodeQL
4752
uses: github/codeql-action/init@v3

.github/workflows/dotnet-build-on-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
- uses: actions/setup-dotnet@v4
3333
with:
3434
dotnet-version: |
35-
6.0.x
36-
7.0.x
35+
8.0.x
36+
9.0.x
3737
3838
- name: Get the tag version
3939
id: get_version

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
uses: actions/setup-dotnet@v4
3434
with:
3535
dotnet-version: |
36-
6.0.x
37-
7.0.x
36+
8.0.x
37+
9.0.x
3838
- name: Restore dependencies
3939
run: dotnet restore
4040
- name: Build

src/azure-cost-cli.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<LangVersion>default</LangVersion>
8-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
8+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
99
<OutputType>Exe</OutputType>
1010
</PropertyGroup>
1111

@@ -31,10 +31,10 @@
3131
<PackageReference Include="Azure.Identity" Version="1.13.1" />
3232
<PackageReference Include="CsvHelper" Version="33.0.1" />
3333
<PackageReference Include="JmesPath.Net" Version="1.0.330" />
34-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
35-
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.10" />
34+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
35+
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.0" />
3636
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
37-
<PackageReference Include="Polly" Version="8.4.2" />
37+
<PackageReference Include="Polly" Version="8.5.0" />
3838
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
3939
<PackageReference Include="Spectre.Console" Version="0.49.1" />
4040
<PackageReference Include="Spectre.Console.Cli" Version="0.49.1" />

0 commit comments

Comments
 (0)