Skip to content

Commit c09fbc0

Browse files
authored
Merge pull request #556 from b3b00/chore/net8.0
Chore/net8.0
2 parents 8f33ccd + dca8cbc commit c09fbc0

File tree

19 files changed

+21
-21
lines changed

19 files changed

+21
-21
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup .NET Core
3030
uses: actions/setup-dotnet@v1
3131
with:
32-
dotnet-version: 7.0.x
32+
dotnet-version: 8.0.x
3333
- name: Clean artifacts and nugets
3434
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
3535
- name: Build with dotnet
@@ -40,7 +40,7 @@ jobs:
4040
if: env.RUN_TESTS
4141
with:
4242
testProject: ${{env.TESTS_PROJECT}}
43-
output: 'lcov.net7.0.info'
43+
output: 'lcov.net8.0.info'
4444
threshold: 80
4545
outputFormat: 'lcov'
4646
excludes: '[program]*,[expressionParser]*,[jsonparser]*,[while]*,[indentedWhile]*,[SimpleExpressionParser]*,[GenericLexerWithCallbacks]*,[indented]*,[postProcessedLexerParser]*,[XML]*,[SimpleTemplate]*,[SlowEOS]*'

src/bench/bench.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>net7.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

src/bench2.4/bench2.4.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>net7.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

src/benchCurrent/benchCurrent.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>net7.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

src/profiler/profiler.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>net7.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

src/samples/GenericLexerWithCallbacks/GenericLexerWithCallbacks.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>net7.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/samples/IndentedWhile/indentedWhile.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
44
<Authors>b3b00</Authors>
55
<RootNamespace>csly.indentedWhileLang</RootNamespace>
66
</PropertyGroup>

src/samples/ParserExample/ParserExample.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>net7.0</TargetFramework>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<Authors>b3b00</Authors>
77
</PropertyGroup>
88

src/samples/SimpleExpressionParser/SimpleExpressionParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
44
<Authors>b3b00</Authors>
55
</PropertyGroup>
66
<ItemGroup>

src/samples/SimpleTemplate/SimpleTemplate.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>net7.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)