Skip to content

Commit b3f8ea8

Browse files
committed
all things net9.0 except for the benchmarks
1 parent 93ac774 commit b3f8ea8

27 files changed

+317
-147
lines changed

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"request": "launch",
1616
"preLaunchTask": "build_testsrunner",
1717
// If you have changed target frameworks, make sure to update the program path.
18-
"program": "${workspaceFolder}/test/FastExpressionCompiler.TestsRunner/bin/Debug/net8.0/FastExpressionCompiler.TestsRunner.dll",
18+
"program": "${workspaceFolder}/test/FastExpressionCompiler.TestsRunner/bin/Debug/net9.0/FastExpressionCompiler.TestsRunner.dll",
1919
"args": [],
2020
"cwd": "${workspaceFolder}/test/FastExpressionCompiler.TestsRunner",
2121
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
@@ -31,7 +31,7 @@
3131
"request": "launch",
3232
"preLaunchTask": "build_benchmarks",
3333
// If you have changed target frameworks, make sure to update the program path.
34-
"program": "${workspaceFolder}/test/FastExpressionCompiler.Benchmarks/bin/Debug/net8.0/FastExpressionCompiler.Benchmarks.exe",
34+
"program": "${workspaceFolder}/test/FastExpressionCompiler.Benchmarks/bin/Debug/net9.0/FastExpressionCompiler.Benchmarks.exe",
3535
"args": [],
3636
"cwd": "${workspaceFolder}/test/FastExpressionCompiler.Benchmarks",
3737
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window

Directory.Build.props

-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
88
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
99
<NoWarn>IDE0251;IDE0079;IDE0047;NETSDK1212</NoWarn>
10-
11-
<DevMode>true</DevMode>
12-
1310
</PropertyGroup>
1411
<ItemGroup>
1512
<None Remove="**\*.orig" />

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2023 Maksim Volkau
3+
Copyright (c) 2016-2024 Maksim Volkau
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ skip_commits:
1010
message: /noci .*/
1111

1212
build_script:
13-
- dotnet run -p:DevMode=false -f:net7.0 -c:Release --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
13+
- dotnet run -p:LegacyModeForCI=true -f:net7.0 -c:Release --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
1414

1515
for:
1616
- matrix:

b.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ echo:
1414
echo:## Starting: TESTS...
1515
echo:
1616

17-
dotnet run --no-build -f net8.0 -c Release --project test/FastExpressionCompiler.TestsRunner
17+
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner
1818
if %ERRORLEVEL% neq 0 goto :error
1919

2020
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner.Net472

b_debug.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo:## Starting: TESTS...
1515
echo:### NET8.0:
1616
echo:
1717

18-
dotnet run --no-build -f net8.0 -c Debug --project test/FastExpressionCompiler.TestsRunner
18+
dotnet run --no-build -c Debug --project test/FastExpressionCompiler.TestsRunner
1919
if %ERRORLEVEL% neq 0 goto :error
2020

2121
echo:

bm.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dotnet run -f net8.0 -c Release --project test/FastExpressionCompiler.Benchmarks/FastExpressionCompiler.Benchmarks.csproj
1+
dotnet run -c Release --project test/FastExpressionCompiler.Benchmarks/FastExpressionCompiler.Benchmarks.csproj

bt.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
@echo off
22

33
echo:
4-
echo:## Running TESTS on .NET 8.0...
4+
echo:## Running TESTS on the Latest .NET version...
55
echo:
6-
dotnet run -v:minimal -f:net8.0 -c:Release -p:GeneratePackageOnBuild=false --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
6+
dotnet run -v:minimal -c:Release -p:GeneratePackageOnBuild=false --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
77
if %ERRORLEVEL% neq 0 goto :error
88

99
echo:

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ echo:
1414
echo:## Starting: TESTS...
1515
echo:
1616

17-
dotnet run --no-build -f net8.0 -c Release --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
17+
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner/FastExpressionCompiler.TestsRunner.csproj
1818
if %ERRORLEVEL% neq 0 goto :error
1919

2020
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner.Net472/FastExpressionCompiler.TestsRunner.Net472.csproj

build_with_packaging.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo:
1515
echo:## Starting: TESTS...
1616
echo:
1717

18-
dotnet run --no-build -f net8.0 -c Release --project test/FastExpressionCompiler.TestsRunner
18+
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner
1919
if %ERRORLEVEL% neq 0 goto :error
2020

2121
dotnet run --no-build -c Release --project test/FastExpressionCompiler.TestsRunner.Net472

nuspecs/FastExpressionCompiler.Internal.src.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>FastExpressionCompiler.Internal.src</id>
55
<version>4.2.2</version>
66
<authors>Maksim Volkau</authors>
7-
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
7+
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
99
<license type="expression">MIT</license>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
@@ -97,7 +97,7 @@ https://github.com/dadhi/FastExpressionCompiler/compare/v4.2.0...v4.2.1
9797
<files include="cs/**/*.*" buildAction="Compile" />
9898
</contentFiles>
9999
<dependencies>
100-
<group targetFramework="net8.0"/>
100+
<group targetFramework="net9.0"/>
101101
<group targetFramework="net472">
102102
<dependency id="System.ValueTuple" version="4.5.0" />
103103
</group>

nuspecs/FastExpressionCompiler.LightExpression.Internal.src.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>FastExpressionCompiler.LightExpression.Internal.src</id>
55
<version>4.2.2</version>
66
<authors>Maksim Volkau</authors>
7-
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
7+
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
99
<license type="expression">MIT</license>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>

nuspecs/FastExpressionCompiler.LightExpression.src.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>FastExpressionCompiler.LightExpression.src</id>
55
<version>4.2.2</version>
66
<authors>Maksim Volkau</authors>
7-
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
7+
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
99
<license type="expression">MIT</license>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>

nuspecs/FastExpressionCompiler.src.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>FastExpressionCompiler.src</id>
55
<version>4.2.2</version>
66
<authors>Maksim Volkau</authors>
7-
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
7+
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
99
<license type="expression">MIT</license>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>

0 commit comments

Comments
 (0)