Skip to content

Commit 5c7ae3c

Browse files
committed
Fix: CI break
CI builds cannot use C# 13.0, reverting to C# 12.0
1 parent f53d762 commit 5c7ae3c

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/Gui/Gui.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RootNamespace>Reko.Gui</RootNamespace>
99
<AssemblyName>Reko.Gui</AssemblyName>
1010
<Configurations>Debug;Release</Configurations>
11-
<LangVersion>10.0</LangVersion>
11+
<LangVersion>12.0</LangVersion>
1212
<Nullable>enable</Nullable>
1313
</PropertyGroup>
1414
<ItemGroup>

src/UnitTests/Arch/Infineon/M8C/M8CDisassemblerTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
using Reko.Arch.Infineon;
2323
using Reko.Arch.Infineon.M8C;
2424
using Reko.Core;
25-
using Reko.Core.Memory;
26-
using System;
27-
using System.Text;
2825

2926
namespace Reko.UnitTests.Arch.Infineon.M8C;
3027

src/tools/regressionTests/regressionTests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<LangVersion>13.0</LangVersion>
76
<nullable>enable</nullable>
87
<AssemblyName>regressionTests</AssemblyName>
98
<RootNamespace>Reko.Tools.regressionTests</RootNamespace>

0 commit comments

Comments
 (0)