diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e11a67d..ab394d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true fetch-depth: 0 - - name: Install .NET 6.0 - uses: actions/setup-dotnet@v1 + - name: Install .NET 7.0 + uses: actions/setup-dotnet@v3 with: - dotnet-version: '6.0.x' + dotnet-version: '7.0.x' - name: Build, Test, Pack, Publish shell: bash diff --git a/src/Tomlyn.Tests/Tomlyn.Tests.csproj b/src/Tomlyn.Tests/Tomlyn.Tests.csproj index 8a5c657..db21535 100644 --- a/src/Tomlyn.Tests/Tomlyn.Tests.csproj +++ b/src/Tomlyn.Tests/Tomlyn.Tests.csproj @@ -1,16 +1,16 @@ - net6.0 + net7.0 false enable - - - - + + + + diff --git a/src/Tomlyn/Tomlyn.props b/src/Tomlyn/Tomlyn.props index 900a529..ec129d2 100644 --- a/src/Tomlyn/Tomlyn.props +++ b/src/Tomlyn/Tomlyn.props @@ -1,7 +1,7 @@ - netstandard2.0;net6.0 + netstandard2.0;net7.0 10.0 Tomlyn is a TOML parser, validator and authoring library for .NET. Alexandre Mutel diff --git a/src/global.json b/src/global.json index 51a6483..aaf58f5 100644 --- a/src/global.json +++ b/src/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.100", + "version": "7.0.100", "rollForward": "latestMinor", "allowPrerelease": false }