Skip to content

Commit 3d064d0

Browse files
committedFeb 4, 2024
App update.
1 parent 6d266a9 commit 3d064d0

File tree

189 files changed

+666
-9374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+666
-9374
lines changed
 

‎ConsoleRunner/ConsoleRunner.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4+
<TargetFrameworks>net6.0;net8.0;net48</TargetFrameworks>
45
</PropertyGroup>
56

67
<ItemGroup>

‎ConsoleRunner/Program.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ class Program
66
{
77
static void Main(string[] args)
88
{
9-
#if NET48
10-
Tests.LinqTestRunner.Run("NET 4.8", true, args);
9+
#if NET8_0
10+
Tests.LinqTestRunner.Run("NET 8.0", false, args);
1111
#elif NET6_0
1212
Tests.LinqTestRunner.Run("NET 6.0", false, args);
13-
#elif NET8_0
14-
Tests.LinqTestRunner.Run("NET 8.0", false, args);
13+
#elif NET48
14+
Tests.LinqTestRunner.Run("NET 4.8", true, args);
1515
#else
1616
#error Unknown platform.
1717
#endif

0 commit comments

Comments
 (0)