From 6f2125e6940feb2a290f97ceb85ace7fb21cd501 Mon Sep 17 00:00:00 2001 From: Alexandre Mutel Date: Tue, 22 Nov 2022 08:44:25 +0100 Subject: [PATCH] Bump to net7.0 --- .github/workflows/ci.yml | 6 +++--- license.txt | 2 +- src/CppAst.Tests/CppAst.Tests.csproj | 2 +- src/global.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e11a67d..e7e5df8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: 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/license.txt b/license.txt index a4634c7..07ef437 100644 --- a/license.txt +++ b/license.txt @@ -1,4 +1,4 @@ -Copyright (c) 2019-2020, Alexandre Mutel +Copyright (c) 2019-2022, Alexandre Mutel All rights reserved. Redistribution and use in source and binary forms, with or without modification diff --git a/src/CppAst.Tests/CppAst.Tests.csproj b/src/CppAst.Tests/CppAst.Tests.csproj index 6d3eb52..cbd7e14 100644 --- a/src/CppAst.Tests/CppAst.Tests.csproj +++ b/src/CppAst.Tests/CppAst.Tests.csproj @@ -1,7 +1,7 @@  - net6.0 + net7.0 $(NETCoreSdkRuntimeIdentifier) false diff --git a/src/global.json b/src/global.json index 5f63fd3..851d984 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 }