Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm-slim AS dotnet
FROM mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm-slim AS dotnet

#====================================================================

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup .NET SDK v8.0.x
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Code formating check
run: |
dotnet tool restore
Expand Down Expand Up @@ -133,10 +133,10 @@ jobs:
run: brew install bison

# .NET Setup (and also MSBuild for Windows).
- name: Setup .NET SDK v8.0.x
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Setup MSBuild
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
Expand Down Expand Up @@ -200,10 +200,10 @@ jobs:
run: |
mkdir bin
cp -rv artifacts/*-native-library/* bin/
- name: Setup .NET SDK v8.0.x
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Get version
id: get-version
shell: pwsh
Expand Down Expand Up @@ -254,11 +254,11 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Setup .NET SDK v8.0.x
if: matrix.dotnet == 'net8.0'
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Setup .NET SDK v9.0.x
if: matrix.dotnet == 'net9.0'
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
Expand Down Expand Up @@ -327,10 +327,10 @@ jobs:
with:
name: nuget-package
path: nuget
- name: Setup .NET SDK v8.0.x
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
# if version contains "-" treat it as pre-release
# example: 1.0.0-beta1
- name: Create release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
cd $VCPKG_INSTALLATION_ROOT
./bootstrap-vcpkg.sh

- name: Setup .NET SDK v8.0.x
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions csharp.test/ParquetSharp.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<!-- Avoid building for older frameworks when testing locally. -->
<!-- Avoid building for other frameworks when testing locally. -->
<!-- This is to speed up the build process and avoid errors when the required runtimes are not installed. -->
<TargetFrameworks Condition="'$(CI)' == 'true'">$(TargetFrameworks);netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'true'">$(TargetFrameworks);net6.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'true' AND '$(OS)'=='Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
Expand Down
4 changes: 2 additions & 2 deletions fsharp.test/ParquetSharp.Test.FSharp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<!-- Avoid building for older frameworks when testing locally. -->
<!-- Avoid building for other frameworks when testing locally. -->
<!-- This is to speed up the build process and avoid errors when the required runtimes are not installed. -->
<TargetFrameworks Condition="'$(CI)' == 'true'">$(TargetFrameworks);netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'true'">$(TargetFrameworks);net6.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="'$(CI)' == 'true' AND '$(OS)'=='Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
<PlatformTarget Condition="'$(TargetFramework)'=='net472'">x64</PlatformTarget>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.109",
"rollForward": "latestMinor"
}
}