Skip to content

Commit bfa6e0f

Browse files
committed
Update dependencies and to net9.0
1 parent 327754e commit bfa6e0f

File tree

12 files changed

+28
-30
lines changed

12 files changed

+28
-30
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ jobs:
1919
submodules: true
2020
fetch-depth: 0
2121

22-
- name: Install .NET 8.0 and 9.0
22+
- name: Install 9.0
2323
uses: actions/setup-dotnet@v4
2424
with:
25-
dotnet-version: |
26-
8.0.x
27-
9.0.x
25+
dotnet-version: 9.0.x
2826

2927
- name: Build, Test, Pack, Publish
3028
shell: bash

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Visit the [Download](https://kalk.dev/download) section.
1616

1717
## How to Build?
1818

19-
You need to install the [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0).
19+
You need to install the [.NET 9.0 SDK](https://dotnet.microsoft.com/download/dotnet/9.0).
2020

2121
Then from the root folder:
2222

site/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The current stable version: **`{{ kalk_version }}`** ([Release notes]({{site.git
2424

2525
## Installation with .NET
2626

27-
If you have [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) already installed, you can then easily install `kalk` as a .NET global tool:
27+
If you have [.NET 9.0 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) already installed, you can then easily install `kalk` as a .NET global tool:
2828

2929
```shell-session
3030
$ dotnet tool install --global kalk

src/Consolus.Tests/Consolus.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="nunit" Version="4.0.1" />
10-
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
9+
<PackageReference Include="nunit" Version="4.4.0" />
10+
<PackageReference Include="NUnit3TestAdapter" Version="5.1.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1212

1313
<Using Include="NUnit.Framework" />
1414
<Using Include="NUnit.Framework.Legacy.ClassicAssert" Alias="Assert" />

src/Consolus/Consolus.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

src/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="MinVer" Version="4.3.0">
3+
<PackageReference Include="MinVer" Version="6.0.0">
44
<PrivateAssets>all</PrivateAssets>
55
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
66
</PackageReference>

src/Kalk.CodeGen/Kalk.CodeGen.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<PackageReference Include="Broslyn" Version="1.2.0" />
11-
<PackageReference Include="Microsoft.Build.Locator" Version="1.7.1" />
12-
<PackageReference Include="Scriban" Version="5.9.1" />
13-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
11+
<PackageReference Include="Microsoft.Build.Locator" Version="1.9.1" />
12+
<PackageReference Include="Scriban" Version="6.3.0" />
13+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

src/Kalk.ConsoleApp/Kalk.ConsoleApp.csproj

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

55
<PropertyGroup>
66
<OutputType>Exe</OutputType>
7-
<TargetFramework>net8.0</TargetFramework>
7+
<TargetFramework>net9.0</TargetFramework>
88
<ApplicationIcon>..\..\img\kalk.ico</ApplicationIcon>
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1010
<AssemblyName>kalk</AssemblyName>

src/Kalk.Core/Kalk.Core.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<KalkGitVersion>true</KalkGitVersion>
77
<IsPackable>false</IsPackable>
@@ -17,11 +17,11 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="CsvHelper" Version="31.0.0" />
20+
<PackageReference Include="CsvHelper" Version="33.1.0" />
2121
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
2222
<PackageReference Include="System.Runtime.Numerics" Version="4.3.0" />
23-
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
24-
<PackageReference Include="Scriban" Version="5.9.1" />
23+
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.9" />
24+
<PackageReference Include="Scriban" Version="6.3.0" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

src/Kalk.IntrinsicsGen/Kalk.IntrinsicsGen.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<LangVersion>8.0</LangVersion>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="Broslyn" Version="1.2.0" />
12-
<PackageReference Include="Microsoft.Build.Locator" Version="1.7.1" />
13-
<PackageReference Include="Scriban" Version="5.9.1" />
14-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
12+
<PackageReference Include="Microsoft.Build.Locator" Version="1.9.1" />
13+
<PackageReference Include="Scriban" Version="6.3.0" />
14+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

0 commit comments

Comments
 (0)