Skip to content

Commit 2c980eb

Browse files
committed
Updated to dotnet6
1 parent 8401d70 commit 2c980eb

File tree

13 files changed

+12
-12
lines changed

13 files changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install C#
6363
uses: actions/setup-dotnet@v1
6464
with:
65-
dotnet-version: "5.0.x"
65+
dotnet-version: "6.0.x"
6666

6767
- name: Install R
6868
if: matrix.os == 'ubuntu-latest'

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Install [Python 3](https://www.python.org/downloads/). You may wish to use [pyen
1010

1111
Install [OpenJDK 11](https://openjdk.java.net/install/index.html) (other versions may work as well) and [ant](https://ant.apache.org/).
1212

13-
Install [.NET 5.0](https://dotnet.microsoft.com/download)
13+
Install [.NET 6.0](https://dotnet.microsoft.com/download)
1414

1515
Install [check](https://libcheck.github.io/check/) (works with at least 0.14 and 0.15) and [valgrind](https://valgrind.org/)
1616

-412 KB
Binary file not shown.
368 KB
Binary file not shown.

plugins/csharp/src/plugin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ use tmc_langs_util::{deserialize, file_util, parse_util, path_util, FileError};
1919
use walkdir::WalkDir;
2020
use zip::ZipArchive;
2121

22-
const TMC_CSHARP_RUNNER: &[u8] = include_bytes!("../deps/tmc-csharp-runner-1.1.1.zip");
23-
const TMC_CSHARP_RUNNER_VERSION: &str = "1.1.1";
22+
const TMC_CSHARP_RUNNER: &[u8] = include_bytes!("../deps/tmc-csharp-runner-2.0.zip");
23+
const TMC_CSHARP_RUNNER_VERSION: &str = "2.0";
2424

2525
#[derive(Default)]
2626
pub struct CSharpPlugin {}

plugins/csharp/tests/data/failing-exercise/src/FailingSample/FailingSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
</Project>

plugins/csharp/tests/data/failing-exercise/test/FailingSampleTests/FailingSampleTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

plugins/csharp/tests/data/non-compiling-exercise/src/NonCompilingSample/NonCompilingSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
</Project>

plugins/csharp/tests/data/non-compiling-exercise/test/NonCompilingSampleTests/NonCompilingSampleTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

plugins/csharp/tests/data/partially-passing/src/TestProject/TestProject.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77

88
</Project>

0 commit comments

Comments
 (0)