Skip to content

Commit e3c0e19

Browse files
committed
Bump .NET to 8.0
1 parent 700ab50 commit e3c0e19

File tree

91 files changed

+99
-109
lines changed

Some content is hidden

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

91 files changed

+99
-109
lines changed

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,6 @@ expressions. Server-side computations can be expressed in lambda expressions,
1818
embedded in LIKQ, and executed on the Graph Engine servers during graph
1919
traversal.
2020

21-
## Recent changes
22-
23-
The main version number is bumped to 3.0 to reflect the recent toolchain updates.
24-
- .NET 7.0 is now the mainly supported target framework
25-
- Visual Studio 2022 is supported
26-
27-
One goal of Graph Engine 3.0 is to bring the system up to date and make it
28-
slimmer. Some obsolete or outdated modules and tools have been moved to the
29-
[Unsupported](src/Modules/Unsupported) directory and removed from the main build pipeline.
30-
3121
## Getting started
3222

3323
Recommended operating system: Windows 10 or Ubuntu 22.04.
@@ -51,8 +41,8 @@ Install g++, cmake, and libssl-dev. For example, on Ubuntu, simply run
5141
sudo apt update && sudo apt install g++ cmake libssl-dev
5242
```
5343

54-
Install [.NET SDK x64 7.0][dotnet-on-linux]. For example, on Ubuntu 22.04, run
55-
`sudo apt update && sudo apt install -y dotnet-sdk-7.0`.
44+
Install [.NET SDK x64 8.0][dotnet-on-linux]. For example, on Ubuntu 22.04, run
45+
`sudo apt update && sudo apt install -y dotnet-sdk-8.0`.
5646
Then, build GraphEngine with the following command:
5747

5848
```shell

azure-pipelines-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ steps:
2828
- task: UseDotNet@2
2929
inputs:
3030
packageType: 'sdk'
31-
version: '7.0.x'
31+
version: '8.0.x'
3232
includePreviewVersions: false
33-
displayName: 'Use .NET 7.0 SDK'
33+
displayName: 'Use .NET 8.0 SDK'
3434

3535
- script: |
3636
lsb_release -a

cmake/FindDotnet.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ FUNCTION(DOTNET_GET_DEPS _DN_PROJECT arguments)
262262
ENDIF()
263263

264264
IF(_DN_NETCOREAPP)
265-
SET(_DN_BUILD_OPTIONS -f net7.0)
266-
SET(_DN_PACK_OPTIONS /p:TargetFrameworks=net7.0)
265+
SET(_DN_BUILD_OPTIONS -f net8.0)
266+
SET(_DN_PACK_OPTIONS /p:TargetFrameworks=net8.0)
267267
ELSEIF(UNIX)
268268
# Unix builds default to netstandard2.0
269269
SET(_DN_BUILD_OPTIONS -f netstandard2.0)
@@ -386,7 +386,7 @@ FUNCTION(RUN_DOTNET DOTNET_PROJECT)
386386
COMMAND ${DOTNET_EXE} clean ${DOTNET_PROJPATH} ${DOTNET_BUILD_PROPERTIES}
387387
COMMAND ${DOTNET_EXE} build --no-restore ${DOTNET_PROJPATH} -c ${DOTNET_CONFIG} ${DOTNET_BUILD_PROPERTIES} ${DOTNET_BUILD_OPTIONS}
388388
# XXX tfm
389-
COMMAND ${DOTNET_EXE} ${DOTNET_OUTPUT_PATH}/net7.0/${DOTNET_PROJNAME}.dll ${DOTNET_ARGUMENTS}
389+
COMMAND ${DOTNET_EXE} ${DOTNET_OUTPUT_PATH}/net8.0/${DOTNET_PROJNAME}.dll ${DOTNET_ARGUMENTS}
390390
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/${DOTNET_PROJNAME}.runtimestamp
391391
WORKING_DIRECTORY ${DOTNET_OUTPUT_PATH})
392392
ADD_CUSTOM_TARGET(
@@ -401,7 +401,7 @@ FUNCTION(TEST_DOTNET DOTNET_PROJECT)
401401
IF(WIN32)
402402
SET(test_framework_args "")
403403
ELSE()
404-
SET(test_framework_args -f net7.0)
404+
SET(test_framework_args -f net8.0)
405405
ENDIF()
406406

407407
ADD_TEST(NAME ${DOTNET_PROJNAME}

lib/Trinity.TSL.CodeGen.exe

-21 KB
Binary file not shown.

lib/Trinity.dll

-14.5 KB
Binary file not shown.

lib/Trinity.lib

0 Bytes
Binary file not shown.

samples/DistributedHashtable/DistributedHashtable.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/Friends/Friends.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/GraphGenerator/GraphGenerator.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/Ping/Ping.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/ProjectTemplate/Template.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

samples/SSSP/SSSP.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

src/Modules/DataImporter/GraphEngine.DataImporter.UnitTest/GraphEngine.DataImporter.UnitTest.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="xunit" Version="2.3.1"/>

src/Modules/DataImporter/GraphEngine.DataImporter/GraphEngine.DataImporter.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
44
<OutputType>Exe</OutputType>
55
<RootNamespace>GraphEngine.DataImporter</RootNamespace>
66
<AssemblyName>GraphEngine.DataImporter</AssemblyName>

src/Modules/DataImporter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In the `GraphEngine.DataImporter` folder:
1717
- cd `src/Modules/DataImporter/GraphEngine.DataImporter`
1818
- Run `dotnet restore`
1919
- Run `dotnet build --configuration Release`
20-
- Run `dotnet run --framework net7.0 --property:Configuration=Release --no-build -- --help`
20+
- Run `dotnet run --framework net8.0 --property:Configuration=Release --no-build -- --help`
2121

2222
### Command Line Option
2323

@@ -35,5 +35,5 @@ In the `GraphEngine.DataImporter` folder:
3535
|--help|Display this help screen.|
3636

3737
```shell
38-
dotnet run --framework net7.0 --property:Configuration=Release --no-build -- [-t tsl] [-d directory] [-o output_dir] [--delimiter delimiter] [-f file_format] [--notrim] [-a tsl_assembly|-g] [explicit files]
38+
dotnet run --framework net8.0 --property:Configuration=Release --no-build -- [-t tsl] [-d directory] [-o output_dir] [--delimiter delimiter] [-f file_format] [--notrim] [-a tsl_assembly|-g] [explicit files]
3939
```

src/Modules/LIKQ/FanoutSearch.Server/FanoutSearch.Server.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
<IsPackable>False</IsPackable>
77
</PropertyGroup>

src/Modules/LIKQ/FanoutSearch.Server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
- cd `src/Modules/LIKQ/FanoutSearch.Server`
55
- Run `dotnet restore`
66
- Run `dotnet build --configuration Release`
7-
- Run `dotnet run --framework net7.0 --property:Configuration=Release --no-build -- --help`
7+
- Run `dotnet run --framework net8.0 --property:Configuration=Release --no-build -- --help`

src/Modules/LIKQ/FanoutSearch.UnitTest/FanoutSearch.UnitTest.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

src/Modules/LIKQ/FanoutSearch/FanoutSearch.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
66
<Version>$(DOTNET_PACKAGE_VERSION)</Version>
77
<FileVersion>$(DOTNET_PACKAGE_VERSION)</FileVersion>
@@ -26,7 +26,7 @@
2626
<None Include="..\..\..\..\resources\logo-64x64.png" Pack="true" PackagePath="logo-64x64.png"/>
2727
</ItemGroup>
2828

29-
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net7.0'">
29+
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net8.0'">
3030
<DefineConstants>NETSTANDARD2_0</DefineConstants>
3131
</PropertyGroup>
3232

@@ -45,11 +45,11 @@
4545
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
4646
</ItemGroup>
4747

48-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net7.0'">
48+
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='net8.0'">
4949
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.0.0" />
5050
<PackageReference Include="System.Runtime" Version="4.3.0" />
5151
</ItemGroup>
52-
<ItemGroup Condition="'$(TargetFramework)'=='net7.0'">
52+
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
5353
<PackageReference Include="System.Runtime.Caching" Version="6.0.0" />
5454
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
5555
</ItemGroup>

src/Modules/Unsupported/Client/Trinity.Client.TestClient/Trinity.Client.TestClient.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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77

src/Modules/Unsupported/Client/Trinity.Client.TestProtocols/Trinity.Client.TestProtocols.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/Modules/Unsupported/Client/Trinity.Client.TestServer/Trinity.Client.TestServer.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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77

src/Modules/Unsupported/Client/Trinity.Client/Trinity.Client.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-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<RootNamespace>Trinity.Client</RootNamespace>
66
<AssemblyName>Trinity.Client</AssemblyName>
77
<OutputType>library</OutputType>

src/Modules/Unsupported/DynamicCluster/Trinity.Azure.Storage.Test/Trinity.Azure.Storage.Test.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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

src/Modules/Unsupported/DynamicCluster/Trinity.Azure.Storage/Trinity.Azure.Storage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<TargetFrameworks>netstandard2.0;net7.0</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
99
<RootNamespace>Trinity.Azure.Storage</RootNamespace>
1010
<AssemblyName>Trinity.Azure.Storage</AssemblyName>
1111
<OutputTypeEx>library</OutputTypeEx>

src/Modules/Unsupported/DynamicCluster/Trinity.DynamicCluster.Test/Trinity.DynamicCluster.Test.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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

src/Modules/Unsupported/ServiceFabric/Trinity.ServiceFabric.GraphEngineRemotingClient/Trinity.ServiceFabric.GraphEngineRemotingClient.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+
<TargetFramework>net8.0</TargetFramework>
66
<Platforms>x64</Platforms>
77
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
88
<IsPackable>false</IsPackable>

src/Modules/Unsupported/ServiceFabric/Trinity.ServiceFabric.GraphEngineService/Trinity.ServiceFabric.GraphEngineService.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+
<TargetFramework>net8.0</TargetFramework>
66
<Platforms>x64</Platforms>
77
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
88
<IsPackable>false</IsPackable>

src/Modules/Unsupported/ServiceFabric/Trinity.ServiceFabric.Infrastructure/Trinity.ServiceFabric.Infrastructure.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-
<TargetFrameworks>net7.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0</TargetFrameworks>
44
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
55
<Version>$(DOTNET_PACKAGE_VERSION)</Version>
66
<FileVersion>$(DOTNET_PACKAGE_VERSION)</FileVersion>

src/Modules/Unsupported/ServiceFabric/Trinity.ServiceFabric.Remoting/Trinity.ServiceFabric.Remoting.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-
<TargetFrameworks>net7.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0</TargetFrameworks>
44
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
55
<Version>$(DOTNET_PACKAGE_VERSION)</Version>
66
<FileVersion>$(DOTNET_PACKAGE_VERSION)</FileVersion>

src/Modules/Unsupported/ServiceFabric/Trinity.ServiceFabric.SampleProtocols/Trinity.ServiceFabric.SampleProtocols.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+
<TargetFramework>net8.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<Configurations>Debug;Release</Configurations>
77
</PropertyGroup>

src/Modules/Unsupported/Storage.Composite/Trinity.Storage.Composite.UnitTest/Trinity.Storage.Composite.UnitTest.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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55

66
<NoWarn>MSB4018</NoWarn>
77
<IsPackable>false</IsPackable>

src/Modules/Unsupported/VSExtension/CSharpNetCoreApp/ProjectTemplate.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

src/Trinity.Core.SmokeTest/minimal-tsl/minimal-tsl.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-
<TargetFrameworks>net7.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
<RootNamespace>GraphEngine.Test</RootNamespace>
77
</PropertyGroup>
88

src/Trinity.Core.SmokeTest/minimal/minimal.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-
<TargetFrameworks>net7.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

src/Trinity.Core.SmokeTest/net/net.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

src/Trinity.Core.SmokeTest/save-load-tsl/save_load_tsl.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+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

src/Trinity.Core.UnitTest/cleanup/cleanup1/cleanup1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<AssemblyName>cleanup1_coreclr</AssemblyName>
66
<RootNamespace>cleanup1</RootNamespace>
77
</PropertyGroup>

src/Trinity.Core.UnitTest/cleanup/cleanup2/cleanup2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<AssemblyName>cleanup2_coreclr</AssemblyName>
66
<RootNamespace>cleanup2</RootNamespace>
77
</PropertyGroup>

src/Trinity.Core.UnitTest/cleanup/cleanup3/cleanup3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<AssemblyName>cleanup3_coreclr</AssemblyName>
66
<RootNamespace>cleanup3</RootNamespace>
77
</PropertyGroup>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy