diff --git a/.drone.yml b/.drone.yml index 245bda7..be11a96 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: run steps: - name: run - image: mcr.microsoft.com/dotnet/sdk:6.0 + image: mcr.microsoft.com/dotnet/sdk:7.0 commands: - "dotnet test -l 'console;verbosity=detailed'" diff --git a/AOC.Common/AOC.Common.csproj b/AOC.Common/AOC.Common.csproj index d7240b7..28a3a3f 100644 --- a/AOC.Common/AOC.Common.csproj +++ b/AOC.Common/AOC.Common.csproj @@ -1,6 +1,6 @@ - net6.0 + net7.0 enable enable diff --git a/AOC.Test/AOC.Test.csproj b/AOC.Test/AOC.Test.csproj index 488cd6c..581f680 100644 --- a/AOC.Test/AOC.Test.csproj +++ b/AOC.Test/AOC.Test.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 enable enable diff --git a/AOC2019/AOC2019.csproj b/AOC2019/AOC2019.csproj index 5acf71d..60e85e8 100644 --- a/AOC2019/AOC2019.csproj +++ b/AOC2019/AOC2019.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net7.0 enable enable diff --git a/AOC2020/AOC2020.csproj b/AOC2020/AOC2020.csproj index 94657b2..a1bba53 100644 --- a/AOC2020/AOC2020.csproj +++ b/AOC2020/AOC2020.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net7.0 enable enable diff --git a/AOC2021/AOC2021.csproj b/AOC2021/AOC2021.csproj index 7118ff9..87ebd58 100644 --- a/AOC2021/AOC2021.csproj +++ b/AOC2021/AOC2021.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net7.0 enable enable diff --git a/AOC2022/AOC2022.csproj b/AOC2022/AOC2022.csproj index 5201930..40085fb 100644 --- a/AOC2022/AOC2022.csproj +++ b/AOC2022/AOC2022.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net7.0 enable enable diff --git a/global.json b/global.json index 1bcf6c0..3cb4f96 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "6.0.0", + "version": "7.0.0", "rollForward": "latestMinor", "allowPrerelease": false } -} \ No newline at end of file +}