Skip to content

Commit 682b68a

Browse files
committed
Keep .NET 5 for the Linux build
1 parent 168ef03 commit 682b68a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- uses: actions/setup-dotnet@v3
1818
with:
1919
dotnet-version: |
20+
5.0.x
2021
6.0.x
2122
7.0.x
2223
8.0.x
@@ -34,6 +35,7 @@ jobs:
3435
- uses: actions/setup-dotnet@v3
3536
with:
3637
dotnet-version: |
38+
5.0.x
3739
6.0.x
3840
7.0.x
3941
8.0.x

src/Mages.Repl.Base/Modules/NugetModuleFileReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
sealed class NugetModuleFileReader : IModuleFileReader
1313
{
1414
private static readonly String LibName = "__lib";
15-
private static readonly String[] AllowedExtensions = new[] { ".nupkg", ".nuget", ".pkg" };
15+
private static readonly String[] AllowedExtensions = [".nupkg", ".nuget", ".pkg"];
1616
private readonly Mages.Repl.IFileSystem _fs;
1717

1818
public NugetModuleFileReader(Mages.Repl.IFileSystem fs)

0 commit comments

Comments
 (0)