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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab
with:
dotnet-version: "5.0.202"
dotnet-version: "6.0.428"
cache: true
cache-dependency-path: "**/packages.lock.json"

Expand Down
2 changes: 1 addition & 1 deletion src/Exercism.Tests/Exercism.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<PackageId>Exercism.Tests</PackageId>
<Version>0.1.0-beta1</Version>
<Title>Exercism Testing</Title>
Expand Down
2 changes: 1 addition & 1 deletion src/Exercism.Tests/packages.lock.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"dependencies": {
".NETCoreApp,Version=v5.0": {
"net6.0": {
"xunit.extensibility.core": {
"type": "Direct",
"requested": "[2.4.1, )",
Expand Down
2 changes: 1 addition & 1 deletion tests/Exercism.Tests.Tests/Exercism.Tests.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<NoWarn>CS8321</NoWarn>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Exercism.Tests.Tests/packages.lock.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"dependencies": {
".NETCoreApp,Version=v5.0": {
"net6.0": {
"Microsoft.NET.Test.Sdk": {
"type": "Direct",
"requested": "[16.7.1, )",
Expand Down
Loading